hi,I’m very new to coding and I am trying to make it so the character doesn’t move during a specific scene. I wanted to know how I would simply make the walk speed 0, then make it back into the default (16 I believe?) using a script. I have looked online but I couldn’t find anything that was simple enough. would I use StarterPlayer since properties are in there for walk speed? I’m just pretty confused, thank you!
You can use a LocalScript for this.
At a certain event you can
1 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0 |
or you can also do this with a player added event.
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | plr.CharacterAdded:Connect( function (character) |
3 | character.Humanoid.WalkSpeed = 0 |
4 | end ) |
5 | end ) |
1 | local plr = game.Players.LocalPlayer |
2 | local char = plr.Character or plr.CharacterAdded:Wait() |
3 | char:WaitForChild( "Humanoid" ).Walkspeed = 0 |
I suggest you start learning coding though, so that you dont have to ask as many questions and so that you fully understand what's told to you.
Accept the answer that helps!
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | plr.CharacterAdded:Connect( function (character) |
3 | character.Humanoid.WalkSpeed = 0 |
4 | end ) |
5 | end ) |
You can do this by making a script under workspace and pasting this into it:
01 | function onPlayerEntered(newPlayer) |
02 | newPlayer.Character.Humanoid.WalkSpeed = 0 |
03 | end |
04 | game.Players.ChildAdded:Connect(onPlayerEntered) |
05 |
06 | function onPlayerRespawned(newPlayer) |
07 | local Humanoid = newPlayer:findFirstChild( "Humanoid" ) |
08 | if Humanoid ~ = nil then |
09 | if game.Workspace:findFirstChild(Humanoid.Parent.Name) ~ = nil then |
10 | Humanoid.WalkSpeed = 0 |
11 | end |
12 | end |
13 | end |
14 | game.Workspace.ChildAdded:Connect(onPlayerRespawned) |
This script ensures that if a player resets it still keeps the walk speed the same.