RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"can you make a april fools script that something happens to the map"
-- server script (ServerScriptService) local function aprilFools() local currentDate = os.date("*t") if currentDate.month == 4 and currentDate.day == 1 then for _, part in ipairs(game.Workspace:GetChildren()) do if part:IsA("Part") or part:IsA("MeshPart") then part.BrickColor = BrickColor.Random() part.Transparency = math.random() * 0.5 end end end end aprilFools()