RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"rain red bricks from the air forever super fast that turns black when they touch the ground"
-- 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.new("Bright red") part.Anchored = false part.CanCollide = true local function onTouched() part.BrickColor = BrickColor.new("Really black") end part.Touched:Connect(onTouched) wait(0.1) end