player = game.Players.PreyStar.FindFirstChild("Humanoid") if player then Walkspeed = 2922 end
player = game.Players.PreyStar while player.Character ~= nil do wait() end character = player.Character humanoid = chracter:FindFirstChild("Humanoid") if character then humanoid.WalkSpeed = 2922 end
Try this
The walkspeed is not defined.
player = game.Players.PreyStar.FindFirstChild("Humanoid") if player then player.WalkSpeed = 2922 end
Hope it works