choco99

Untitled

Jan 1st, 2022 (edited)
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. game.CoreGui.ScreenGui.Frame.TextButton.MouseButton1Click:Connect(function()
  2. if game.CoreGui.ScreenGui.Frame.TextLabel.TextTransparency == 1 then
  3. game.CoreGui.ScreenGui.Frame.TextLabel.TextTransparency = 0
  4. else
  5. game.CoreGui.ScreenGui.Frame.TextLabel.TextTransparency = 1
  6. end
  7. end)
  8.  
  9. local BrokenLoop = false
  10.  
  11.  
  12.  
  13. if game.CoreGui.ScreenGui.Frame.TextLabel.TextTransparency == 0 then
  14. BrokenLoop = false
  15. while true do
  16. wait(0.1)
  17. local args = {
  18. [1] = game.CoreGui.ScreenGui.Frame.TextBox.Text,
  19. [2] = "All"
  20. }
  21.  
  22. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  23. if BrokenLoop == true then
  24. break
  25. end
  26. end
  27. else
  28. BrokenLoop = true
  29. end
  30.  
Advertisement
Add Comment
Please, Sign In to add comment