RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make it so that you explode when you die make it complex"
-- server script game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character:WaitForChild("Humanoid").Died:Connect(function() local explosion = Instance.new("Explosion") explosion.Position = character.HumanoidRootPart.Position explosion.BlastRadius = 10 explosion.BlastPressure = 100000 explosion.Parent = game.Workspace end) end) end)