Advertisement
pa1nx9

Hexa Game GUI – SHAPE LINE INSTANT WIN & MORE!

Sep 27th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local SquidGameLogo = Instance.new("ImageLabel")
  4. local ScrollingFrame = Instance.new("ScrollingFrame")
  5. local InstantTpRedGreenLight = Instance.new("TextButton")
  6. local TpWinShape = Instance.new("TextButton")
  7. local PullRope = Instance.new("TextButton")
  8. local on = true
  9.  
  10. ScreenGui.Parent = game:WaitForChild("CoreGui")
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. ScreenGui.ResetOnSpawn = false
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.Active = true
  16. Frame.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  17. Frame.BorderColor3 = Color3.fromRGB(64, 64, 64)
  18. Frame.Position = UDim2.new(0.755256534, 0, 0.410684466, 0)
  19. Frame.Size = UDim2.new(0, 194, 0, 61)
  20. Frame.Draggable = true
  21.  
  22. SquidGameLogo.Name = "SquidGameLogo"
  23. SquidGameLogo.Parent = Frame
  24. SquidGameLogo.Active = true
  25. SquidGameLogo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. SquidGameLogo.BorderColor3 = Color3.fromRGB(64, 64, 64)
  27. SquidGameLogo.Position = UDim2.new(0.0635346472, 0, 0.0788446516, 0)
  28. SquidGameLogo.Size = UDim2.new(0, 169, 0, 51)
  29. SquidGameLogo.Image = "http://www.roblox.com/asset/?id=7572531023"
  30.  
  31. ScrollingFrame.Parent = Frame
  32. ScrollingFrame.Active = true
  33. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  34. ScrollingFrame.BackgroundTransparency = 0.500
  35. ScrollingFrame.BorderColor3 = Color3.fromRGB(64, 64, 64)
  36. ScrollingFrame.Position = UDim2.new(0, 0, 1, 0)
  37. ScrollingFrame.Size = UDim2.new(0, 194, 0, 167)
  38. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  39.  
  40. InstantTpRedGreenLight.Name = "Instant Tp Red & Green Light"
  41. InstantTpRedGreenLight.Parent = ScrollingFrame
  42. InstantTpRedGreenLight.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  43. InstantTpRedGreenLight.BorderColor3 = Color3.fromRGB(64, 64, 64)
  44. InstantTpRedGreenLight.Position = UDim2.new(0.0618556701, 0, 0, 0)
  45. InstantTpRedGreenLight.Size = UDim2.new(0, 169, 0, 32)
  46. InstantTpRedGreenLight.Font = Enum.Font.SourceSans
  47. InstantTpRedGreenLight.Text = "Red & Green Light TP"
  48. InstantTpRedGreenLight.TextColor3 = Color3.fromRGB(255, 255, 255)
  49. InstantTpRedGreenLight.TextSize = 18.000
  50. InstantTpRedGreenLight.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  51. InstantTpRedGreenLight.TextWrapped = true
  52.  
  53. TpWinShape.Name = "TpWinShape"
  54. TpWinShape.Parent = ScrollingFrame
  55. TpWinShape.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  56. TpWinShape.BorderColor3 = Color3.fromRGB(64, 64, 64)
  57. TpWinShape.Position = UDim2.new(0.0618556701, 0, 0.0688524395, 0)
  58. TpWinShape.Size = UDim2.new(0, 169, 0, 32)
  59. TpWinShape.Font = Enum.Font.SourceSans
  60. TpWinShape.Text = "Shape Line Instant Win"
  61. TpWinShape.TextColor3 = Color3.fromRGB(255, 255, 255)
  62. TpWinShape.TextSize = 18.000
  63. TpWinShape.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  64.  
  65. PullRope.Name = "PullRope"
  66. PullRope.Parent = ScrollingFrame
  67. PullRope.BackgroundColor3 = Color3.fromRGB(64, 64, 64)
  68. PullRope.BorderColor3 = Color3.fromRGB(64, 64, 64)
  69. PullRope.Position = UDim2.new(0.0618556701, 0, 0.137704879, 0)
  70. PullRope.Size = UDim2.new(0, 169, 0, 32)
  71. PullRope.Font = Enum.Font.SourceSans
  72. PullRope.Text = "Toggle Rope Pull"
  73. PullRope.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. PullRope.TextSize = 18.000
  75. PullRope.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  76.  
  77. InstantTpRedGreenLight.MouseButton1Down:connect(function()
  78. 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)
  79. end)
  80.  
  81. TpWinShape.MouseButton1Down:connect(function()
  82. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  83. if v.Name == "Star" or v.Name == "Circle" or v.Name == "Square" or v.Name == "Triangle" then
  84. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Part.CFrame
  85. end
  86. end
  87. end)
  88.  
  89. PullRope.MouseButton1Click:Connect(function()
  90. if not on then on = true
  91. _G.ON = true
  92. while _G.ON and wait(0.1) do
  93. game:GetService("ReplicatedStorage").RE.Pull:FireServer()
  94. end
  95. else on = false
  96. _G.ON = false
  97. while _G.ON and wait(0.1) do
  98. game:GetService("ReplicatedStorage").RE.Pull:FireServer()
  99. end
  100. end
  101. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement