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