Advertisement
Honansik

Hexa Game GUI Script [Auto-Win]

Dec 3rd, 2021
662
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.77 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 ToggeablePunish = Instance.new("TextButton")
  15. local FakeGlassNamer = Instance.new("TextButton")
  16. local active = true
  17. local on = true
  18.  
  19. SquidGameGui.Name = "SquidGameGui"
  20. SquidGameGui.Parent = game:WaitForChild("CoreGui")
  21. SquidGameGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  22. SquidGameGui.ResetOnSpawn = false
  23.  
  24. Frame.Parent = SquidGameGui
  25. Frame.Active = true
  26. Frame.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  27. Frame.BorderColor3 = Color3.fromRGB(64, 64, 64)
  28. Frame.Position = UDim2.new(0.755256534, 0, 0.410684466, 0)
  29. Frame.Size = UDim2.new(0, 194, 0, 61)
  30. Frame.Draggable = true
  31.  
  32. SquidGameLogo.Name = "SquidGameLogo"
  33. SquidGameLogo.Parent = Frame
  34. SquidGameLogo.Active = true
  35. SquidGameLogo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. SquidGameLogo.BorderColor3 = Color3.fromRGB(64, 64, 64)
  37. SquidGameLogo.Position = UDim2.new(0.0635346472, 0, 0.0788446516, 0)
  38. SquidGameLogo.Size = UDim2.new(0, 169, 0, 51)
  39. SquidGameLogo.Image = "http://www.roblox.com/asset/?id=7572531023"
  40.  
  41. ScrollingFrame.Parent = Frame
  42. ScrollingFrame.Active = true
  43. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  44. ScrollingFrame.BackgroundTransparency = 0.500
  45. ScrollingFrame.BorderColor3 = Color3.fromRGB(64, 64, 64)
  46. ScrollingFrame.Position = UDim2.new(0, 0, 1, 0)
  47. ScrollingFrame.Size = UDim2.new(0, 194, 0, 167)
  48. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  49.  
  50. InstantTpRedGreenLight.Name = "Instant Tp Red & Green Light"
  51. InstantTpRedGreenLight.Parent = ScrollingFrame
  52. InstantTpRedGreenLight.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  53. InstantTpRedGreenLight.BorderColor3 = Color3.fromRGB(64, 64, 64)
  54. InstantTpRedGreenLight.Position = UDim2.new(0.0618556701, 0, 0, 0)
  55. InstantTpRedGreenLight.Size = UDim2.new(0, 169, 0, 32)
  56. InstantTpRedGreenLight.Font = Enum.Font.SourceSans
  57. InstantTpRedGreenLight.Text = "Red & Green Light TP"
  58. InstantTpRedGreenLight.TextColor3 = Color3.fromRGB(255, 255, 255)
  59. InstantTpRedGreenLight.TextSize = 18.000
  60. InstantTpRedGreenLight.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  61. InstantTpRedGreenLight.TextWrapped = true
  62.  
  63. TpWinShape.Name = "TpWinShape"
  64. TpWinShape.Parent = ScrollingFrame
  65. TpWinShape.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  66. TpWinShape.BorderColor3 = Color3.fromRGB(64, 64, 64)
  67. TpWinShape.Position = UDim2.new(0.0618556701, 0, 0.0688524395, 0)
  68. TpWinShape.Size = UDim2.new(0, 169, 0, 32)
  69. TpWinShape.Font = Enum.Font.SourceSans
  70. TpWinShape.Text = "Shape Line Instant Win"
  71. TpWinShape.TextColor3 = Color3.fromRGB(255, 255, 255)
  72. TpWinShape.TextSize = 18.000
  73. TpWinShape.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  74.  
  75. PullRope.Name = "PullRope"
  76. PullRope.Parent = ScrollingFrame
  77. PullRope.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  78. PullRope.BorderColor3 = Color3.fromRGB(64, 64, 64)
  79. PullRope.Position = UDim2.new(0.0618556701, 0, 0.137704879, 0)
  80. PullRope.Size = UDim2.new(0, 169, 0, 32)
  81. PullRope.Font = Enum.Font.SourceSans
  82. PullRope.Text = "Toggle Rope Pull"
  83. PullRope.TextColor3 = Color3.fromRGB(255, 255, 255)
  84. PullRope.TextSize = 18.000
  85. PullRope.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  86.  
  87. ToggeablePunish.Name = "Toggeable Punish"
  88. ToggeablePunish.Parent = ScrollingFrame
  89. ToggeablePunish.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  90. ToggeablePunish.BorderColor3 = Color3.fromRGB(64, 64, 64)
  91. ToggeablePunish.Position = UDim2.new(0.0618556701, 0, 0.208196685, 0)
  92. ToggeablePunish.Size = UDim2.new(0, 169, 0, 32)
  93. ToggeablePunish.Font = Enum.Font.SourceSans
  94. ToggeablePunish.Text = "Toggeable Punish"
  95. ToggeablePunish.TextColor3 = Color3.fromRGB(255, 255, 255)
  96. ToggeablePunish.TextSize = 18.000
  97. ToggeablePunish.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  98.  
  99. FakeGlassNamer.Name = "Fake Glass Namer"
  100. FakeGlassNamer.Parent = ScrollingFrame
  101. FakeGlassNamer.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  102. FakeGlassNamer.BorderColor3 = Color3.fromRGB(64, 64, 64)
  103. FakeGlassNamer.Position = UDim2.new(0.0618556701, 0, 0.275409788, 0)
  104. FakeGlassNamer.Size = UDim2.new(0, 169, 0, 32)
  105. FakeGlassNamer.Font = Enum.Font.SourceSans
  106. FakeGlassNamer.Text = "Fake Glass Namer"
  107. FakeGlassNamer.TextColor3 = Color3.fromRGB(255, 255, 255)
  108. FakeGlassNamer.TextSize = 18.000
  109. FakeGlassNamer.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  110.  
  111. InstantTpRedGreenLight.MouseButton1Down:connect(function()
  112.     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)
  113. end)
  114.  
  115. TpWinShape.MouseButton1Down:connect(function()
  116.     for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  117.         if v.Name == "Star" or v.Name == "Circle" or v.Name == "Square" or v.Name == "Triangle" or v.Name == "Umbrella" then
  118.             game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Part.CFrame
  119.         end
  120.     end
  121. end)
  122.  
  123. PullRope.MouseButton1Click:Connect(function()
  124.     if not on then on = true
  125.         _G.ON = true
  126.         while _G.ON and wait(0.1) do
  127.             game:GetService("ReplicatedStorage").RE.Pull:FireServer()
  128.         end
  129.     else on = false
  130.         _G.ON = false
  131.         while _G.ON and wait(0.1) do
  132.             game:GetService("ReplicatedStorage").RE.Pull:FireServer()
  133.         end
  134.     end
  135. end)
  136.  
  137. ToggeablePunish.MouseButton1Click:Connect(function()
  138.     if not active then active = true
  139.         game.Players.LocalPlayer.Character.Parent = nil
  140.     else active = false
  141.         game.Players.LocalPlayer.Character.Parent = workspace
  142.     end
  143. end)
  144.  
  145. FakeGlassNamer.MouseButton1Down:connect(function()
  146.  
  147.     for i,v in pairs(game:GetService("Workspace").Glass:GetDescendants()) do
  148.         if v.ClassName == "TouchTransmitter" then
  149.             local BillboardGui = Instance.new("BillboardGui")
  150.             local TextLabel = Instance.new("TextLabel")
  151.    
  152.             BillboardGui.Parent = v.Parent
  153.             BillboardGui.AlwaysOnTop = true
  154.             BillboardGui.LightInfluence = 1
  155.             BillboardGui.Size = UDim2.new(0, 50, 0, 50)
  156.             BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
  157.    
  158.             TextLabel.Parent = BillboardGui
  159.             TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  160.             TextLabel.BackgroundTransparency = 1
  161.             TextLabel.Size = UDim2.new(1, 0, 1, 0)
  162.             TextLabel.Text = "FakeGlass"
  163.             TextLabel.TextColor3 = Color3.new(1, 0, 0)
  164.             TextLabel.TextScaled = true
  165.         end
  166.     end
  167. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement