#cant get localplayer.character
1 messages · Page 1 of 1 (latest)
LocalPlayer.Character is a property. when you do WaitForChild you're waiting for a CHILD inside the Player instance. Keep in mind that the Character isnt actully inside the player instance.
if you wanna wait for the character to load you can use Player.CharacterAdded event.
local Character = Player.Character or Player.CharacterAdded:Wait()
CharacterAdded is a Event
ah thank you
This is an example of when old things come in handy again.