Advertisement
littleoemmett

Roblox plz steal hack gui

Aug 27th, 2022
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.50 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Little Plz Steal Gui", "GrapeTheme")
  3.  
  4. -- MAIN
  5. local Main = Window:NewTab("Main")
  6. local MainSection = Main:NewSection("Main Hack")
  7.  
  8.  
  9. MainSection:NewSlider("Speed hack", "make you run fast or slow", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  10. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  11. end)
  12.  
  13. MainSection:NewSlider("JumpPower", "jump high", 350, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  14. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  15. end)
  16.  
  17. MainSection:NewButton("JP & WS reset", "reset", function()
  18. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  19. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  20. end)
  21.  
  22. MainSection:NewButton("Inf admin", "admin cmds", function()
  23. --BROUGHT TO YOU BY RSCRIPTS.NET--
  24.  
  25. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  26. end)
  27.  
  28. MainSection:NewButton("darkdex", "have fun", function()
  29. -- Dark Dex --
  30.  
  31. if game:GetService'CoreGui':FindFirstChild'Dex' then
  32. game:GetService'CoreGui'.Dex:Destroy();
  33. end
  34.  
  35. math.randomseed(tick())
  36.  
  37. local charset = {}
  38. for i = 48, 57 do table.insert(charset, string.char(i)) end
  39. for i = 65, 90 do table.insert(charset, string.char(i)) end
  40. for i = 97, 122 do table.insert(charset, string.char(i)) end
  41. function RandomCharacters(length)
  42. if length > 0 then
  43. return RandomCharacters(length - 1) .. charset[math.random(1, #charset)]
  44. else
  45. return ""
  46. end
  47. end
  48.  
  49. local Dex = game:GetObjects("rbxassetid://3567096419")[1]
  50. Dex.Name = RandomCharacters(math.random(5, 20))
  51. Dex.Parent = game:GetService("CoreGui")
  52.  
  53. local function Load(Obj, Url)
  54. local function GiveOwnGlobals(Func, Script)
  55. local Fenv = {}
  56. local RealFenv = {script = Script}
  57. local FenvMt = {}
  58. FenvMt.__index = function(a,b)
  59. if RealFenv[b] == nil then
  60. return getfenv()[b]
  61. else
  62. return RealFenv[b]
  63. end
  64. end
  65. FenvMt.__newindex = function(a, b, c)
  66. if RealFenv[b] == nil then
  67. getfenv()[b] = c
  68. else
  69. RealFenv[b] = c
  70. end
  71. end
  72. setmetatable(Fenv, FenvMt)
  73. setfenv(Func, Fenv)
  74. return Func
  75. end
  76.  
  77. local function LoadScripts(Script)
  78. if Script.ClassName == "Script" or Script.ClassName == "LocalScript" then
  79. spawn(function()
  80. GiveOwnGlobals(loadstring(Script.Source, "=" .. Script:GetFullName()), Script)()
  81. end)
  82. end
  83. for i,v in pairs(Script:GetChildren()) do
  84. LoadScripts(v)
  85. end
  86. end
  87.  
  88. LoadScripts(Obj)
  89. end
  90.  
  91. Load(Dex)
  92. end)
  93.  
  94. MainSection:NewButton("Rejoin server", "rejoin", function()
  95. local ts = game:GetService("TeleportService")
  96.  
  97. local p = game:GetService("Players").LocalPlayer
  98.  
  99.  
  100.  
  101. ts:Teleport(game.PlaceId, p)
  102. end)
  103.  
  104. -- CUP HACK
  105. local Cuphack = Window:NewTab("Cup hack")
  106. local CuphackSection = Cuphack:NewSection("only delete the cup that dont have the diamond")
  107.  
  108. CuphackSection:NewToggle("Delete cup 1", "delete cup", function(state)
  109. if state then
  110. local Descendants = workspace:GetDescendants()
  111.  
  112.  
  113. for i, value in pairs(Descendants) do
  114. if value.Name == "Important" then
  115. local cups = value:GetDescendants()
  116. for i, e in pairs (cups) do
  117. if e.Name == "Detail" then
  118. local v = e.Parent.Parent
  119. v["1"].Detail.Transparency = 1
  120. v["1"].Primary.Transparency = 1
  121. end
  122. end
  123. end
  124. end
  125. else
  126. local Descendants = workspace:GetDescendants()
  127.  
  128.  
  129. for i, value in pairs(Descendants) do
  130. if value.Name == "Important" then
  131. local cups = value:GetDescendants()
  132. for i, e in pairs (cups) do
  133. if e.Name == "Detail" then
  134. local v = e.Parent.Parent
  135. v["1"].Detail.Transparency = 0
  136. v["1"].Primary.Transparency = 0
  137. end
  138. end
  139. end
  140. end
  141. end
  142. end)
  143.  
  144. CuphackSection:NewToggle("Delete cup 2", "delete cup", function(state)
  145. if state then
  146. local Descendants = workspace:GetDescendants()
  147.  
  148.  
  149. for i, value in pairs(Descendants) do
  150. if value.Name == "Important" then
  151. local cups = value:GetDescendants()
  152. for i, e in pairs (cups) do
  153. if e.Name == "Detail" then
  154. local v = e.Parent.Parent
  155. v["2"].Detail.Transparency = 1
  156. v["2"].Primary.Transparency = 1
  157. end
  158. end
  159. end
  160. end
  161. else
  162. local Descendants = workspace:GetDescendants()
  163.  
  164.  
  165. for i, value in pairs(Descendants) do
  166. if value.Name == "Important" then
  167. local cups = value:GetDescendants()
  168. for i, e in pairs (cups) do
  169. if e.Name == "Detail" then
  170. local v = e.Parent.Parent
  171. v["2"].Detail.Transparency = 0
  172. v["2"].Primary.Transparency = 0
  173. end
  174. end
  175. end
  176. end
  177. end
  178. end)
  179.  
  180. CuphackSection:NewToggle("Delete cup 3", "delete cup", function(state)
  181. if state then
  182. local Descendants = workspace:GetDescendants()
  183.  
  184.  
  185. for i, value in pairs(Descendants) do
  186. if value.Name == "Important" then
  187. local cups = value:GetDescendants()
  188. for i, e in pairs (cups) do
  189. if e.Name == "Detail" then
  190. local v = e.Parent.Parent
  191. v["3"].Detail.Transparency = 1
  192. v["3"].Primary.Transparency = 1
  193. end
  194. end
  195. end
  196. end
  197. else
  198. local Descendants = workspace:GetDescendants()
  199.  
  200.  
  201. for i, value in pairs(Descendants) do
  202. if value.Name == "Important" then
  203. local cups = value:GetDescendants()
  204. for i, e in pairs (cups) do
  205. if e.Name == "Detail" then
  206. local v = e.Parent.Parent
  207. v["3"].Detail.Transparency = 0
  208. v["3"].Primary.Transparency = 0
  209. end
  210. end
  211. end
  212. end
  213. end
  214. end)
  215.  
  216. CuphackSection:NewToggle("Delete cup 4", "delete cup", function(state)
  217. if state then
  218. local Descendants = workspace:GetDescendants()
  219.  
  220.  
  221. for i, value in pairs(Descendants) do
  222. if value.Name == "Important" then
  223. local cups = value:GetDescendants()
  224. for i, e in pairs (cups) do
  225. if e.Name == "Detail" then
  226. local v = e.Parent.Parent
  227. v["4"].Detail.Transparency = 1
  228. v["4"].Primary.Transparency = 1
  229. end
  230. end
  231. end
  232. end
  233. else
  234. local Descendants = workspace:GetDescendants()
  235.  
  236.  
  237. for i, value in pairs(Descendants) do
  238. if value.Name == "Important" then
  239. local cups = value:GetDescendants()
  240. for i, e in pairs (cups) do
  241. if e.Name == "Detail" then
  242. local v = e.Parent.Parent
  243. v["4"].Detail.Transparency = 0
  244. v["4"].Primary.Transparency = 0
  245. end
  246. end
  247. end
  248. end
  249. end
  250. end)
  251.  
  252. CuphackSection:NewToggle("Delete cup 5", "delete cup", function(state)
  253. if state then
  254. local Descendants = workspace:GetDescendants()
  255.  
  256.  
  257. for i, value in pairs(Descendants) do
  258. if value.Name == "Important" then
  259. local cups = value:GetDescendants()
  260. for i, e in pairs (cups) do
  261. if e.Name == "Detail" then
  262. local v = e.Parent.Parent
  263. v["5"].Detail.Transparency = 1
  264. v["5"].Primary.Transparency = 1
  265. end
  266. end
  267. end
  268. end
  269. else
  270. local Descendants = workspace:GetDescendants()
  271.  
  272.  
  273. for i, value in pairs(Descendants) do
  274. if value.Name == "Important" then
  275. local cups = value:GetDescendants()
  276. for i, e in pairs (cups) do
  277. if e.Name == "Detail" then
  278. local v = e.Parent.Parent
  279. v["5"].Detail.Transparency = 0
  280. v["5"].Primary.Transparency = 0
  281. end
  282. end
  283. end
  284. end
  285. end
  286. end)
  287.  
  288. CuphackSection:NewButton("Reset all cup", "ButtonInfo", function()
  289. local Descendants = workspace:GetDescendants()
  290.  
  291.  
  292. for i, value in pairs(Descendants) do
  293. if value.Name == "Important" then
  294. local cups = value:GetDescendants()
  295. for i, e in pairs (cups) do
  296. if e.Name == "Detail" then
  297. local v = e.Parent.Parent
  298. v["1"].Detail.Transparency = 0
  299. v["1"].Primary.Transparency = 0
  300. v["2"].Detail.Transparency = 0
  301. v["2"].Primary.Transparency = 0
  302. v["3"].Detail.Transparency = 0
  303. v["3"].Primary.Transparency = 0
  304. v["4"].Detail.Transparency = 0
  305. v["4"].Primary.Transparency = 0
  306. v["5"].Detail.Transparency = 0
  307. v["5"].Primary.Transparency = 0
  308. end
  309. end
  310. end
  311. end
  312. end)
  313.  
  314. -- eye contest hack
  315. local eyecontesthack = Window:NewTab("eye contest hack")
  316. local eyecontesthackSection = eyecontesthack:NewSection("eye contest hack")
  317.  
  318. eyecontesthackSection:NewButton("anti afk gui", "bypass 20 min disconnect", function()
  319. loadstring(game:HttpGet(("https://pastebin.com/raw/bwP4bmed"), true))()
  320. end)
  321.  
  322. local Credit = Window:NewTab("Credit")
  323. local CreditSection = Credit:NewSection("Credit")
  324.  
  325. CreditSection:NewLabel("credit to Uwerz on youtube for cup script")
  326.  
  327. CreditSection:NewLabel("credit to 1 F0 on youtube for free gui model")
  328.  
  329. CreditSection:NewLabel("credit to owner of anti afk script (idk owner, sorry")
  330.  
  331. CreditSection:NewLabel("credit to me (little) for putting this together")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement