|
| 14 Sep 2015 05:21 PM |
Y'know how when a player falls from a high height and when they hit the ground, they start bouncing? I'm trying to get it so when the player falls it will have solid landing with no bounce. Any help on how to remove this?
Fsteak? |
|
|
| Report Abuse |
|
|
| |
|
|
| 17 Nov 2015 06:37 PM |
| http://wiki.roblox.com/index.php?title=AllTutorials |
|
|
| Report Abuse |
|
|
|
| 17 Nov 2015 07:38 PM |
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect9function(char) for _, part in pairs(char:GetChildren()) do if part.Name == "HumanoidRootPart" then part:Destroy() end end) end) |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 17 Nov 2015 07:46 PM |
set the floor CanCollide to false
u cant bounce if there is nothing to bounce on! |
|
|
| Report Abuse |
|
|
| |
|
Fvii
|
  |
| Joined: 13 Dec 2014 |
| Total Posts: 74 |
|
|
| 17 Nov 2015 08:37 PM |
| Make a BodyForce in the torso and make it so that it forces your torso downwards. :-) |
|
|
| Report Abuse |
|
|
|
| 02 Apr 2016 09:44 PM |
I know this post is old and done but I just came across it because I was having the same problem just put this script in your baseplate, or whatever ground!
brick = game.Workspace.Brick
function onTouched(part)
brick.Elasticity = 0
end
brick.Touched:connect(onTouched) |
|
|
| Report Abuse |
|
|