of     1   

Kicklicks3
#183016944Friday, February 05, 2016 2:06 AM GMT

Is there a way to get the character from the player?
pinballboy7
#183017076Friday, February 05, 2016 2:08 AM GMT

Player.Character
CardsOfFate
#183017342Friday, February 05, 2016 2:12 AM GMT

If its a LocalScript in Player: plr = game.Players.LocalPlayer char = plr.Character If its a Script you'd just need to locate the Player Lets say you have a Script in players backpack: plr = script.Parent.Parent char = plr.Character
LongKillKreations
#183021701Friday, February 05, 2016 3:23 AM GMT

player.Character It will be nil if no character exists.
YoBoiDevDerpy
#183023249Friday, February 05, 2016 3:48 AM GMT

player.Character I recommend adding a wait(.05) or player:WaitForChild("Character")
Casualist
#183023854Friday, February 05, 2016 3:58 AM GMT

"player:WaitForChild("Character")" That will never work as Character is not a child, it is a property that stores an reference to the character object. local character = player.Character or player.CharacterAdded:wait() This ultimately does what you tried to do @Derp

    of     1