Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

why is my character sliding?

Asked by 3 years ago
Edited 3 years ago

hey, so I'm trying to make my characters small and whenever I'm small it keeps sliding me as if there is very little friction. can you tell me what's wrong with my script? thanks:

game.Players.playerAdded:Connect(function(player)

player.CharacterAdded:Connect(function(Character)

    local Humanoid = player.Character.Humanoid

    Humanoid.BodyDepthScale.Value = 0.25

    Humanoid.BodyHeightScale.Value = 0.25

    Humanoid.BodyWidthScale.Value = 0.25

    Humanoid.HeadScale.Value = 0.25

    Humanoid.WalkSpeed = 50

    Humanoid.JumpPower = 100

end)

end)

Answer this question