Speed Pad Script Roblox Studio
Speed Pad Script Roblox Studio
video: Coming Soon
steps:
Insert a part that will be your speed pad customize it how you want
Add a script into the part
Change the script to our script
Try it out!!
Script:
script.Parent.Touched:Connect(function(hit)
local humanoid = hit.Parent:FindFirstChildOfClass("Humanoid") --CB
if humanoid then
humanoid.WalkSpeed = 32
end
end)
-- script made by Content Bakery
Extra(not for infinite but for 4 seconds):
change the script for this script
Script:
script.Parent.Touched:Connect(function(hit)
local humanoid = hit.Parent:FindFirstChildOfClass("Humanoid") --CB
if humanoid then
humanoid.WalkSpeed = 32
wait(3)
while humanoid.WalkSpeed > 16 do
humanoid.WalkSpeed -= 1
wait(0.1)
end
end
end)
-- script made by Content Bakery