How can I make a player go very fast?

You can apply a infinite amount of walkspeed. Just the second you move It will kill your humanoid.

Why should they be related to walking, the creator has stated they want the character to “go very fast”, not “walk very fast”, walking is just one of the solutions.

Also my bad for I guess starting a small heated argument. He doesn’t give a lot of details on the topic title so there is no way to know exactly what he wants. I should have just let us both send our methods/solutions peacefully and waited for a response from the post owner. Apologies.

Change the player’s walkspeed when they join

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(char)
        char:WaitForChild("Humanoid").WalkSpeed = 10000 -- put anything here
    end
end
1 Like