How to Make a Part Change Your Walkspeed when you Touch it in Roblox Studio | Tutorial

In todays Video, I will be showing How to make a Part Change Your Walkspeed Touch it in Roblox Studio!
hope y"all liked it Subscribe for more and comment down what y"all want next!
Scripts~
script.Parent.Touched:Connect(function(touched)
local humanoid = touched.Parent:WaitForChild("Humanoid")
if humanoid then
humanoid.WalkSpeed = 32 -- You can change here how fast you want the players walkspeed to be, The default normal walk speed is 16.
end
end)
My Roblox user, 0winto100win
don't forget to check it out!
Roblox Studio
Roblox Studio Tutorial

Пікірлер: 5

  • @KrazyDarkz
    @KrazyDarkz18 күн бұрын

    W vid

  • @exo31712

    @exo31712

    18 күн бұрын

    @@KrazyDarkz appreciate it a lot! :)

  • @KrazyDarkz

    @KrazyDarkz

    17 күн бұрын

    @@exo31712 np

  • @exo31712
    @exo3171227 күн бұрын

    -scripts- script.Parent.Touched:Connect(function(touched) local humanoid = touched.Parent:WaitForChild("Humanoid") if humanoid then humanoid.WalkSpeed = 32 -- You can change here how fast you want the players walkspeed to be, The default normal walk speed is 16. end end)

  • @exo31712

    @exo31712

    17 күн бұрын

    .