RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"rain bricks from the air forever"
-- server script (ServerScriptService) while true do local part = Instance.new("Part") part.Parent = game.Workspace part.Size = Vector3.new(2, 1, 4) part.Position = Vector3.new(math.random(-100, 100), 50, math.random(-100, 100)) part.BrickColor = BrickColor.Random() local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.Parent = part bodyVelocity.Velocity = Vector3.new(0, -50, 0) wait(0.5) end