Trail when character is running

i searched and not found anything, i wanna make a trail thats on torso’s back when character is sprinting (walkspeed above 16)

A simple search on Youtube would do.

If you want it to if the walk speed is above 16 then do:

game.Players.PlayerAdded:Connect(function(player)
   player.CharacerAdded:Connect(function(character)
      local humanoid = character:WaitForChild("Humanoid")

      if humanoid and humanoid.WalkSpeed < 16 then
         -- Trail
      end
   end
end
1 Like