RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make 10 hints that get chosen randomly every 10 seconds"
-- server script local hints = { "Hint 1", "Hint 2", "Hint 3", "Hint 4", "Hint 5", "Hint 6", "Hint 7", "Hint 8", "Hint 9", "Hint 10", } while true do local randomHint = hints[math.random(#hints)] game.StarterGui:SetCore("SendNotification", { Title = "Hint"; Text = randomHint; Duration = 10; }) wait(10) end