Advertisement
immbr05

Number Guesser Game For Free UGC! - zone 2 (1-100)

May 26th, 2024 (edited)
13
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local num = 1
  2.  
  3. while true do
  4. local args = {
  5. [1] = tostring(num),
  6. [2] = "All"
  7. }
  8.  
  9. game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest"):FireServer(unpack(args))
  10. wait(3)
  11.  
  12. num = num + 1
  13. if num > 100 then
  14. num = 1
  15. end
  16. end
  17.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement