Skip to content

Commit

Permalink
Fix character require
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Nov 18, 2024
1 parent 7cafee3 commit 1214683
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libs/playerloaded/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
-- module for handling callbacks to the player loaded remote

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local character = require(ReplicatedFirst:WaitForChild("packages"):WaitForChild("character"))
local character = require("../character")

type PlayerLoadedCallback = (player: Player & { Character: character.Character }) -> ()

Expand Down

0 comments on commit 1214683

Please sign in to comment.