Hello, I have been wondering this for 1 year and it’s time to ask! Why is it when I use a localscript in ReplicatedFirst, I do:
1: local Humanoid = game.Players.LocalPlayer.Character:WaitForChild(“Humanoid”)
or even:
1: local Humanoid = game.Players.LocalPlayer.Character.Humanoid
the script doesn’t wait. But then I do
repeat wait()
until game:IsLoaded()
or even:
repeat
wait()
until game:IsLoaded
None of those work sadly. Any ideas on how to make the script wait? I know I should add a wait so how long of a wait should it be?