RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make the blocks spawn less"
-- server script while true do local part = Instance.new("Part") part.Parent = game.Workspace local randomX = math.random(-100, 100) local randomZ = math.random(-100, 100) part.Position = Vector3.new(randomX, 50, randomZ) part.BrickColor = BrickColor.new("Bright red") part.Touched:Connect(function(hit) if hit.Name == "Baseplate" then local explosion = Instance.new("Explosion") explosion.Parent = game.Workspace explosion.Position = part.Position end end) wait(5) end