RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"now make it so the player falls to the ground with gravity"
-- server script local function makeRagdoll(character) local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.BreakJointsOnDeath = false humanoid.PlatformStand = true end end game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) makeRagdoll(character) end) end)