RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make a glowing yellow sphere that spawns everywhere around the map every 0.1 seconds."
-- server script while true do local sphere = Instance.new("Part") sphere.Parent = game.Workspace local randomX = math.random(-100, 100) local randomZ = math.random(-100, 100) sphere.Position = Vector3.new(randomX, 50, randomZ) sphere.Shape = Enum.PartType.Ball sphere.Size = Vector3.new(5, 5, 5) sphere.Color = Color3.fromRGB(255, 255, 0) sphere.Material = Enum.Material.Neon task.wait(0.1) end