Advertisement
YT_PatricioTGN

Untitled

Nov 10th, 2022
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. --Subscribe & Enjoy --
  2.  
  3. local UIlib = loadstring(game:HttpGet("https://exoticstingyhypotenuse.teresbest.repl.co/ui.lua"))()
  4. local FarmingSpeed = 1
  5.  
  6. local Win = UIlib:Window("Nub.xyz", "PLS DONATE 💸")
  7. local main = Win:Tab("Main")
  8. local Misc = Win:Tab("Misc")
  9. Misc:Slider("Walk Speed", 0, 250, 28, function(v)
  10.  
  11. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  12.  
  13. end)
  14.  
  15. Misc:Slider("Jump Power", 0, 250, 50, function(v)
  16.  
  17. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  18.  
  19. end)
  20.  
  21. Misc:Slider("Gravity", 0, 250, 196.2, function(v)
  22. game.workspace.Gravity = v
  23. end)
  24. Misc:Button("Fake Headless", function()
  25. game.Players.LocalPlayer.Character.Head.Transparency = 1
  26. game.Players.LocalPlayer.Character.Head.face:Destroy()
  27. end)
  28. main:Slider("Robux", 0, 100000, 100000, function(v)
  29. robux = v
  30. end)
  31.  
  32.  
  33. main:Button("Donate (For You)", function()
  34. _G.WhoDonated = game.Players.LocalPlayer.Name
  35. _G.HowMuchRobux = robux
  36. _G.WhoGotRobux = game.Players.LocalPlayer.Name
  37. _G.SmiteAnimationId = "ID" -- the id of the person that will appear on the 1mil effect
  38.  
  39. loadstring(game:HttpGet(('https://raw.githubusercontent.com/lolthatseazy/ezaza/main/PlsDonateFakeDono.txt'),true))()
  40.  
  41. end)
  42. main:Label("-- Donate To someone --")
  43.  
  44. main:Slider("Robux", 0, 100000, 100000, function(v)
  45. robux1 = v
  46. end)
  47. local Players_Table = {}
  48. for i,v in pairs(game.Players:GetPlayers()) do
  49. if v ~= game.Players.LocalPlayer then
  50. table.insert(Players_Table, v.Name)
  51. end
  52. end
  53.  
  54.  
  55. local players = main:Dropdown("Select Player", Players_Table, function(t)
  56. Player = t
  57. end)
  58. main:Button("Refresh", function()
  59. players:Clear()
  60. local Players_Table = {}
  61. for i,v in pairs(game.Players:GetPlayers()) do
  62. if v ~= game.Players.LocalPlayer then
  63. players:Add(v.Name)
  64. end
  65. end
  66. end)
  67. main:Button("Donate", function()
  68. _G.WhoDonated = game.Players.LocalPlayer.Name
  69. _G.HowMuchRobux = robux1
  70. _G.WhoGotRobux = Player
  71. _G.SmiteAnimationId = "ID" -- the id of the person that will appear on the 1mil effect
  72.  
  73. loadstring(game:HttpGet(('https://raw.githubusercontent.com/lolthatseazy/ezaza/main/PlsDonateFakeDono.txt'),true))()
  74.  
  75. end)
  76. --[[
  77. _G.WhoDonated = game.Players.LocalPlayer.Name
  78. _G.HowMuchRobux = 100000
  79. _G.WhoGotRobux = game.Players.LocalPlayer.Name
  80. _G.SmiteAnimationId = "ID" -- the id of the person that will appear on the 1mil effect
  81.  
  82. loadstring(game:HttpGet(('https://raw.githubusercontent.com/lolthatseazy/ezaza/main/PlsDonateFakeDono.txt'),true))()
  83. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement