RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"a part that explodes the player when touched by player"
-- server script local part = script.Parent local explosionRadius = 10 local function explodeOnTouch(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local explosion = Instance.new("Explosion") explosion.Position = otherPart.Parent.HumanoidRootPart.Position explosion.BlastRadius = explosionRadius explosion.Parent = game.Workspace end end part.Touched:Connect(explodeOnTouch)