Advertisement
syedayat2017

Texting Simulator 💬 AutoFarm

Jun 19th, 2021
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. -- [[ TOGGLES ]] --
  2. getgenv().sendText = false;
  3.  
  4. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  5. local w = library:CreateWindow("ZackHub")
  6. local b = w:CreateFolder("Autofarm")
  7. local c = w:CreateFolder("Info")
  8.  
  9. b:Toggle("AutoSend",function(bool)
  10. getgenv().sendText = bool
  11. if bool then
  12. send()
  13. end
  14. end)
  15.  
  16. c:Label("Made by 5yed.A",{
  17. TextSize = 15;
  18. TextColor = Color3.fromRGB(255,255,255);
  19. BgColor = Color3.fromRGB(69,69,69);
  20. })
  21.  
  22. -- [[ FUNCTIONS ]] --
  23. function send()
  24. spawn(function()
  25. while sendText == true do
  26. local args = {[1] = "Phone"}
  27. game:GetService("ReplicatedStorage").Events.SendTexts:FireServer(unpack(args))
  28. wait()
  29. end
  30. end)
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement