RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"give me a working bomb gear"
-- local script local bomb = script.Parent local bombPart = bomb.BombPart local bombTimer = bomb.BombTimer local bombExploded = false bombTimer.Value = 10 local function explode() if not bombExploded then bombExploded = true bombPart.Transparency = 1 bombPart.Anchored = false bombPart:SetNetworkOwner(nil) bombPart:SetNetworkOwner(nil) bombPart:SetNetworkOwner(nil) wait(1) bombPart:Destroy() end end bombTimer.Changed:Connect(explode)