RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Roblox script that spawns bombs in the sky at random"
-- server script (ServerScriptService) while true do local bomb = Instance.new("Part") bomb.Name = "Bomb" bomb.Shape = "Ball" bomb.Size = Vector3.new(2, 2, 2) bomb.BrickColor = BrickColor.new("Really black") bomb.Parent = game.Workspace bomb.Position = Vector3.new(math.random(-100, 100), 50, math.random(-100, 100)) bomb.Velocity = Vector3.new(0, -50, 0) local explosion = Instance.new("Explosion") explosion.BlastPressure = 5000 explosion.BlastRadius = 10 explosion.Parent = bomb explosion.Explode:Connect(function() bomb:Destroy() end) wait(2) end