tristanlol123

【🦑】Hexa Game Script GUI

Oct 10th, 2021 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.69 KB | None | 0 0
  1. for i,a in pairs(game:GetDescendants()) do
  2.     if a.Name == "SquidGameGui" then
  3.         a:Destroy()
  4.     end
  5. end
  6.  
  7. local SquidGameGui = Instance.new("ScreenGui")
  8. local Frame = Instance.new("Frame")
  9. local SquidGameLogo = Instance.new("ImageLabel")
  10. local ScrollingFrame = Instance.new("ScrollingFrame")
  11. local InstantTpRedGreenLight = Instance.new("TextButton")
  12. local TpWinShape = Instance.new("TextButton")
  13. local PullRope = Instance.new("TextButton")
  14. local FakeGlassNamer = Instance.new("TextButton")
  15. local PunchReach = Instance.new("TextButton")
  16. local FixJPWS = Instance.new("TextButton")
  17. local Platform = Instance.new("TextButton")
  18. local LightsOutTP = Instance.new("TextButton")
  19. local TogglePunish = Instance.new("TextButton")
  20. local active = true
  21. local cool = true
  22. local on = true
  23.  
  24. SquidGameGui.Name = "SquidGameGui"
  25. SquidGameGui.Parent = game:WaitForChild("CoreGui")
  26. SquidGameGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  27. SquidGameGui.ResetOnSpawn = false
  28.  
  29. Frame.Parent = SquidGameGui
  30. Frame.Active = true
  31. Frame.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  32. Frame.BorderColor3 = Color3.fromRGB(64, 64, 64)
  33. Frame.Position = UDim2.new(0.755256534, 0, 0.410684466, 0)
  34. Frame.Size = UDim2.new(0, 194, 0, 61)
  35. Frame.Draggable = true
  36.  
  37. SquidGameLogo.Name = "SquidGameLogo"
  38. SquidGameLogo.Parent = Frame
  39. SquidGameLogo.Active = true
  40. SquidGameLogo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. SquidGameLogo.BorderColor3 = Color3.fromRGB(64, 64, 64)
  42. SquidGameLogo.Position = UDim2.new(0.0635346472, 0, 0.0788446516, 0)
  43. SquidGameLogo.Size = UDim2.new(0, 169, 0, 51)
  44. SquidGameLogo.Image = "http://www.roblox.com/asset/?id=7572531023"
  45.  
  46. ScrollingFrame.Parent = Frame
  47. ScrollingFrame.Active = true
  48. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  49. ScrollingFrame.BackgroundTransparency = 0.500
  50. ScrollingFrame.BorderColor3 = Color3.fromRGB(64, 64, 64)
  51. ScrollingFrame.Position = UDim2.new(0, 0, 1, 0)
  52. ScrollingFrame.Size = UDim2.new(0, 194, 0, 167)
  53. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  54.  
  55. InstantTpRedGreenLight.Name = "Instant Tp Red & Green Light"
  56. InstantTpRedGreenLight.Parent = ScrollingFrame
  57. InstantTpRedGreenLight.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  58. InstantTpRedGreenLight.BorderColor3 = Color3.fromRGB(64, 64, 64)
  59. InstantTpRedGreenLight.Position = UDim2.new(0.0618556701, 0, 0, 0)
  60. InstantTpRedGreenLight.Size = UDim2.new(0, 169, 0, 32)
  61. InstantTpRedGreenLight.Font = Enum.Font.SourceSans
  62. InstantTpRedGreenLight.Text = "Red & Green Light TP"
  63. InstantTpRedGreenLight.TextColor3 = Color3.fromRGB(255, 255, 255)
  64. InstantTpRedGreenLight.TextSize = 18.000
  65. InstantTpRedGreenLight.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  66. InstantTpRedGreenLight.TextWrapped = true
  67.  
  68. TpWinShape.Name = "TpWinShape"
  69. TpWinShape.Parent = ScrollingFrame
  70. TpWinShape.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  71. TpWinShape.BorderColor3 = Color3.fromRGB(64, 64, 64)
  72. TpWinShape.Position = UDim2.new(0.0618556701, 0, 0.0688524395, 0)
  73. TpWinShape.Size = UDim2.new(0, 169, 0, 32)
  74. TpWinShape.Font = Enum.Font.SourceSans
  75. TpWinShape.Text = "Shape Line Instant Win"
  76. TpWinShape.TextColor3 = Color3.fromRGB(255, 255, 255)
  77. TpWinShape.TextSize = 18.000
  78. TpWinShape.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  79.  
  80. PullRope.Name = "PullRope"
  81. PullRope.Parent = ScrollingFrame
  82. PullRope.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  83. PullRope.BorderColor3 = Color3.fromRGB(64, 64, 64)
  84. PullRope.Position = UDim2.new(0.0618556701, 0, 0.201639324, 0)
  85. PullRope.Size = UDim2.new(0, 169, 0, 32)
  86. PullRope.Font = Enum.Font.SourceSans
  87. PullRope.Text = "Toggle Rope Pull"
  88. PullRope.TextColor3 = Color3.fromRGB(255, 255, 255)
  89. PullRope.TextSize = 18.000
  90. PullRope.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  91.  
  92. FakeGlassNamer.Name = "Fake Glass Namer"
  93. FakeGlassNamer.Parent = ScrollingFrame
  94. FakeGlassNamer.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  95. FakeGlassNamer.BorderColor3 = Color3.fromRGB(64, 64, 64)
  96. FakeGlassNamer.Position = UDim2.new(0.0618556701, 0, 0.334426194, 0)
  97. FakeGlassNamer.Size = UDim2.new(0, 169, 0, 32)
  98. FakeGlassNamer.Font = Enum.Font.SourceSans
  99. FakeGlassNamer.Text = "Fake Glass Namer"
  100. FakeGlassNamer.TextColor3 = Color3.fromRGB(255, 255, 255)
  101. FakeGlassNamer.TextSize = 18.000
  102. FakeGlassNamer.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  103.  
  104. PunchReach.Name = "PunchReach"
  105. PunchReach.Parent = ScrollingFrame
  106. PunchReach.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  107. PunchReach.BorderColor3 = Color3.fromRGB(64, 64, 64)
  108. PunchReach.Position = UDim2.new(0.0618556701, 0, 0.537704825, 0)
  109. PunchReach.Size = UDim2.new(0, 169, 0, 32)
  110. PunchReach.Font = Enum.Font.SourceSans
  111. PunchReach.Text = "Infinite Punch Reach"
  112. PunchReach.TextColor3 = Color3.fromRGB(255, 255, 255)
  113. PunchReach.TextSize = 18.000
  114. PunchReach.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  115.  
  116. FixJPWS.Name = "FixJP&WS"
  117. FixJPWS.Parent = ScrollingFrame
  118. FixJPWS.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  119. FixJPWS.BorderColor3 = Color3.fromRGB(64, 64, 64)
  120. FixJPWS.Position = UDim2.new(0.0618556701, 0, 0.467213064, 0)
  121. FixJPWS.Size = UDim2.new(0, 169, 0, 32)
  122. FixJPWS.Font = Enum.Font.SourceSans
  123. FixJPWS.Text = "Fix Jump & Speed"
  124. FixJPWS.TextColor3 = Color3.fromRGB(255, 255, 255)
  125. FixJPWS.TextSize = 18.000
  126. FixJPWS.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  127.  
  128. Platform.Name = "Platform"
  129. Platform.Parent = ScrollingFrame
  130. Platform.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  131. Platform.BorderColor3 = Color3.fromRGB(64, 64, 64)
  132. Platform.Position = UDim2.new(0.0618556701, 0, 0.401639313, 0)
  133. Platform.Size = UDim2.new(0, 169, 0, 32)
  134. Platform.Font = Enum.Font.SourceSans
  135. Platform.Text = "Platform Trolling"
  136. Platform.TextColor3 = Color3.fromRGB(255, 255, 255)
  137. Platform.TextSize = 18.000
  138. Platform.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  139.  
  140. LightsOutTP.Name = "LightsOutTP"
  141. LightsOutTP.Parent = ScrollingFrame
  142. LightsOutTP.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  143. LightsOutTP.BorderColor3 = Color3.fromRGB(64, 64, 64)
  144. LightsOutTP.Position = UDim2.new(0.0618556701, 0, 0.136065558, 0)
  145. LightsOutTP.Size = UDim2.new(0, 169, 0, 32)
  146. LightsOutTP.Font = Enum.Font.SourceSans
  147. LightsOutTP.Text = "Light's Out Safe Tp"
  148. LightsOutTP.TextColor3 = Color3.fromRGB(255, 255, 255)
  149. LightsOutTP.TextSize = 18.000
  150. LightsOutTP.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  151.  
  152. TogglePunish.Name = "TogglePunish"
  153. TogglePunish.Parent = ScrollingFrame
  154. TogglePunish.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  155. TogglePunish.BorderColor3 = Color3.fromRGB(64, 64, 64)
  156. TogglePunish.Position = UDim2.new(0.0618556701, 0, 0.26557374, 0)
  157. TogglePunish.Size = UDim2.new(0, 169, 0, 32)
  158. TogglePunish.Font = Enum.Font.SourceSans
  159. TogglePunish.Text = "Toggle Punish"
  160. TogglePunish.TextColor3 = Color3.fromRGB(255, 255, 255)
  161. TogglePunish.TextSize = 18.000
  162. TogglePunish.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  163.  
  164. InstantTpRedGreenLight.MouseButton1Down:connect(function()
  165.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-576.481506, 20.1353817, 304.144165, -0.707134247, 0, -0.707079291, 0, 1, 0, 0.707079291, 0, -0.707134247)
  166. end)
  167.  
  168. TpWinShape.MouseButton1Down:connect(function()
  169.     for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  170.         if v.Name == "Star" or v.Name == "Circle" or v.Name == "Square" or v.Name == "Triangle" or v.Name == "Umbrella" then
  171.             game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Part.CFrame
  172.         end
  173.     end
  174. end)
  175.  
  176. PullRope.MouseButton1Click:Connect(function()
  177.     if not on then on = true
  178.         _G.ON = true
  179.         while _G.ON and wait(0.04) do
  180.             game:GetService("ReplicatedStorage").RE.Pull:FireServer()
  181.         end
  182.     else on = false
  183.         _G.ON = false
  184.         while _G.ON and wait(0.1) do
  185.             game:GetService("ReplicatedStorage").RE.Pull:FireServer()
  186.         end
  187.     end
  188. end)
  189.  
  190. FakeGlassNamer.MouseButton1Down:connect(function()
  191.  
  192.     for i,v in pairs(game:GetService("Workspace").Glass:GetDescendants()) do
  193.         if v.ClassName == "TouchTransmitter" then
  194.             local BillboardGui = Instance.new("BillboardGui")
  195.             local TextLabel = Instance.new("TextLabel")
  196.  
  197.             BillboardGui.Parent = v.Parent
  198.             BillboardGui.AlwaysOnTop = true
  199.             BillboardGui.LightInfluence = 1
  200.             BillboardGui.Size = UDim2.new(0, 50, 0, 50)
  201.             BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
  202.  
  203.             TextLabel.Parent = BillboardGui
  204.             TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  205.             TextLabel.BackgroundTransparency = 1
  206.             TextLabel.Size = UDim2.new(1, 0, 1, 0)
  207.             TextLabel.Text = "FakeGlass"
  208.             TextLabel.TextColor3 = Color3.new(1, 0, 0)
  209.             TextLabel.TextScaled = true
  210.         end
  211.     end
  212. end)
  213.  
  214. PunchReach.MouseButton1Down:connect(function()
  215.  
  216.     -- Credits: https://v3rmillion.net/member.php?action=profile&uid=1594530
  217.  
  218.     while wait() do
  219.         pcall(function()
  220.             for i, v in next, game.Players:GetChildren() do
  221.                 if v.Character and v.Character:FindFirstChild"HumanoidRootPart" and v ~= game.Players.LocalPlayer then
  222.                     local punch = game.Players.LocalPlayer.Character.Punch
  223.                     firetouchinterest(punch.Handle, v.Character.HumanoidRootPart, 0)
  224.                     firetouchinterest(punch.Handle, v.Character.HumanoidRootPart, 1)
  225.                 end
  226.             end
  227.         end)
  228.     end
  229. end)
  230.  
  231. FixJPWS.MouseButton1Down:connect(function()
  232.  
  233.     game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 50
  234.     game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 16
  235. end)
  236.  
  237. Platform.MouseButton1Down:connect(function()
  238.  
  239.     local part = Instance.new("Part")
  240.     part.Parent = game.Workspace.Glass["1"].RealGlass;
  241.     part.CFrame = CFrame.new(-540.05, -150.2, -367.15);
  242.     part.Size = Vector3.new(100, 0.2, 225);
  243.     part.Transparency = 0.3;
  244.     part.Anchored = true;
  245.     part.CanCollide = true;
  246.     part.Material = "ForceField";
  247. end)
  248.  
  249. LightsOutTP.MouseButton1Down:connect(function()
  250.  
  251.     -- Tp to safe Spot
  252.     game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-534.6, -84.009, -320)
  253. end)
  254.  
  255. TogglePunish.MouseButton1Click:Connect(function()
  256.     if not cool then cool = true
  257.         game:GetService("Players").LocalPlayer.Character.Parent = nil
  258.         wait(1)
  259.         _G.ON = true
  260.         while _G.ON and wait(0.1) do
  261.             game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 1000
  262.         end
  263.     else cool = false
  264.         game:GetService("Players").LocalPlayer.Character.Parent = game.Workspace
  265.         wait(1)
  266.         _G.ON = false
  267.         while _G.ON and wait(0.1) do
  268.             game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 1000
  269.         end
  270.     end
  271. end)
Add Comment
Please, Sign In to add comment