2AreYouMental110

op hexa game script

Nov 6th, 2021 (edited)
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.14 KB | None | 0 0
  1. -- credits to wYn#0001 for teaching me how to do this
  2. -- game: https://www.roblox.com/games/7555007091/Hexa-Game
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12. getgenv().autopull = false
  13.  
  14.  
  15. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  16. local w = library:CreateWindow("hexa game")
  17. local a = w:CreateFolder("red light green light")
  18. local b = w:CreateFolder("cookie cutting")
  19. local c = w:CreateFolder("tug of war")
  20. local d = w:CreateFolder("marbles")
  21. local e = w:CreateFolder("glass")
  22. local f = w:CreateFolder("last game")
  23.  
  24. a:Button("teleport to the end",function()
  25.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-576.464905, 5.00185299, 311.380341, -0.0868979618, -7.50625446e-08, 0.996217191, 4.6518614e-10, 1, 7.53881437e-08, -0.996217191, 7.01450276e-09, -0.0868979618)
  26. end)
  27.  
  28. b:Button("no method to work with",function()
  29.     print("bruh")
  30. end)
  31.  
  32. c:Toggle("auto pull",function(bool)
  33.     getgenv().autopull = bool
  34.     print(on)
  35.     if bool then
  36.         pull()
  37.     end
  38. end)
  39.  
  40. d:Button("no method to work with",function()
  41.     print("bruh")
  42. end)
  43.  
  44. e:Button("detect fake glass",function()
  45.     local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  46.     for i, v in pairs(game:GetService("Workspace").Glass:GetDescendants()) do
  47.         if v.Name == "TouchInterest" and v.Parent then
  48.             firetouchinterest(player, v.Parent, 0)
  49.             wait(.1)
  50.             firetouchinterest(player, v.Parent, 1)
  51.         end
  52.     end
  53. end)
  54.  
  55. f:Button("delete sand",function()
  56.     game:GetService("Workspace")["Kill?"]:Destroy()
  57. end)
  58.  
  59. f:Button("teleport back (if you fall)",function()
  60.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-991, 4.23024511, -388, -0.737048864, 0, -0.675839484, 0, 1, 0, 0.675839484, 0, -0.737048864)
  61. end)
  62.  
  63.  
  64.  
  65. function pull()
  66.     spawn(function()
  67.         while getgenv().autopull == true do
  68.             local Event = game:GetService("ReplicatedStorage").RE.Pull
  69.             Event:FireServer()
  70.             wait()
  71.         end
  72.     end)
  73. end
  74.  
  75. wait()
  76. game:GetService("ReplicatedStorage").RE.ExploitDetected:Destroy()
  77.  
Add Comment
Please, Sign In to add comment