Is it possible to change the speed of any player that touches a specific brick?
local part = Instance.new('Part', Workspace)
part.Anchored = true
part.Transparency = .5
part.BrickColor = BrickColor.new('Bright red')
part.Touched:connect(function()
game.Workspace.Player1.Humanoid.WalkSpeed = 200
end)
What i specifically mean is that when anyone touches that bright red brick that is created into the workspace, how do I make it that when 'anyone' touches it, their speed turns to 200?
game.Workspace.Player1.Humanoid.WalkSpeed=200
I am sure that is the line I have to change, but I am not sure what to change it too to make sure that when 'anyone' touches it, there speed is made 200.