Advertisement
hmkgamming

ulshack

Apr 8th, 2022
47,535
4
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.46 KB | None | 5 1
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local ULShack = Instance.new("TextLabel")
  9. local UICorner = Instance.new("UICorner")
  10. local bar = Instance.new("TextButton")
  11. local UICorner_2 = Instance.new("UICorner")
  12. local close = Instance.new("TextButton")
  13. local UICorner_3 = Instance.new("UICorner")
  14. local reb = Instance.new("TextButton")
  15. local UICorner_4 = Instance.new("UICorner")
  16. local speed = Instance.new("TextButton")
  17. local UICorner_5 = Instance.new("UICorner")
  18. local UICorner_6 = Instance.new("UICorner")
  19. local openmain = Instance.new("Frame")
  20. local open = Instance.new("TextButton")
  21. local UICorner_7 = Instance.new("UICorner")
  22. local UICorner_8 = Instance.new("UICorner")
  23.  
  24. --Properties:
  25.  
  26. ScreenGui.Parent = game.CoreGui
  27. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  28.  
  29. main.Name = "main"
  30. main.Parent = ScreenGui
  31. main.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  32. main.Position = UDim2.new(0.146997929, 0, 0.0784641057, 0)
  33. main.Size = UDim2.new(0, 344, 0, 246)
  34. main.Visible = false
  35. main.Active = true
  36. main.Draggable = true
  37.  
  38. ULShack.Name = "ULS hack"
  39. ULShack.Parent = main
  40. ULShack.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  41. ULShack.Size = UDim2.new(0, 342, 0, 31)
  42. ULShack.Font = Enum.Font.GothamBold
  43. ULShack.Text = "ULS HACK!"
  44. ULShack.TextColor3 = Color3.fromRGB(255, 255, 0)
  45. ULShack.TextScaled = true
  46. ULShack.TextSize = 14.000
  47. ULShack.TextWrapped = true
  48.  
  49. UICorner.Parent = ULShack
  50.  
  51. bar.Name = "bar"
  52. bar.Parent = main
  53. bar.BackgroundColor3 = Color3.fromRGB(0, 255, 127)
  54. bar.Position = UDim2.new(0, 0, 0.167011172, 0)
  55. bar.Size = UDim2.new(0, 342, 0, 48)
  56. bar.Font = Enum.Font.GothamBold
  57. bar.Text = "Strenght script (clicks for more!)"
  58. bar.TextColor3 = Color3.fromRGB(0, 170, 255)
  59. bar.TextScaled = true
  60. bar.TextSize = 14.000
  61. bar.TextWrapped = true
  62.  
  63. UICorner_2.Parent = bar
  64. bar.MouseButton1Down:connect(function()
  65. local player = game.Players.LocalPlayer
  66. while (1) do
  67. wait()
  68. game:GetService("ReplicatedStorage").Events.bar:InvokeServer()
  69. end
  70. end)
  71.  
  72. close.Name = "close"
  73. close.Parent = main
  74. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  75. close.Position = UDim2.new(0.891812861, 0, 0, 0)
  76. close.Size = UDim2.new(0, 37, 0, 31)
  77. close.Font = Enum.Font.GothamBold
  78. close.Text = "x"
  79. close.TextColor3 = Color3.fromRGB(0, 170, 255)
  80. close.TextScaled = true
  81. close.TextSize = 14.000
  82. close.TextWrapped = true
  83.  
  84. UICorner_3.Parent = close
  85. close.MouseButton1Down:connect(function()
  86. main.Visible = false
  87. openmain.Visible = true
  88. end)
  89.  
  90. reb.Name = "reb"
  91. reb.Parent = main
  92. reb.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  93. reb.Position = UDim2.new(4.47034836e-08, 0, 0.440264553, 0)
  94. reb.Size = UDim2.new(0, 343, 0, 48)
  95. reb.Font = Enum.Font.GothamBold
  96. reb.Text = "Auto Reb!"
  97. reb.TextColor3 = Color3.fromRGB(0, 170, 255)
  98. reb.TextScaled = true
  99. reb.TextSize = 14.000
  100. reb.TextWrapped = true
  101.  
  102. UICorner_4.Parent = reb
  103. reb.MouseButton1Down:connect(function()
  104. local player = game.Players.LocalPlayer
  105. while (1) do
  106. wait()
  107. game:GetService("ReplicatedStorage").Events.Rebirth:InvokeServer()
  108. end
  109. end)
  110.  
  111. speed.Name = "speed"
  112. speed.Parent = main
  113. speed.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
  114. speed.Position = UDim2.new(-0.00292397663, 0, 0.725988746, 0)
  115. speed.Size = UDim2.new(0, 343, 0, 48)
  116. speed.Font = Enum.Font.GothamBold
  117. speed.Text = "AutoSpeed (must equip flash pet)"
  118. speed.TextColor3 = Color3.fromRGB(0, 170, 255)
  119. speed.TextScaled = true
  120. speed.TextSize = 14.000
  121. speed.TextWrapped = true
  122.  
  123. UICorner_5.Parent = speed
  124.  
  125. UICorner_6.Parent = main
  126. speed.MouseButton1Down:connect(function()
  127. local player = game.Players.LocalPlayer
  128. while (1) do
  129. wait()
  130. game:GetService("ReplicatedStorage").Events.train:InvokeServer()
  131. end
  132. end)
  133.  
  134. openmain.Name = "openmain"
  135. openmain.Parent = ScreenGui
  136. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  137. openmain.Position = UDim2.new(0, 0, 0.529215395, 0)
  138. openmain.Size = UDim2.new(0, 80, 0, 27)
  139. openmain.Active = true
  140. openmain.Draggable = true
  141.  
  142. open.Name = "open"
  143. open.Parent = openmain
  144. open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  145. open.Size = UDim2.new(0, 80, 0, 27)
  146. open.Font = Enum.Font.GothamBold
  147. open.Text = "Open Gui"
  148. open.TextColor3 = Color3.fromRGB(255, 255, 255)
  149. open.TextScaled = true
  150. open.TextSize = 14.000
  151. open.TextWrapped = true
  152.  
  153. UICorner_7.Parent = open
  154.  
  155. UICorner_8.Parent = openmain
  156. open.MouseButton1Down:connect(function()
  157. openmain.Visible = false
  158. main.Visible = true
  159. end)
Advertisement
Comments
  • Anna_Russia-_52
    2 years
    # text 4.42 KB | 0 0
    1. local ScreenGui = Instance.new("ScreenGui")
    2. local main = Instance.new("Frame")
    3. local ULShack = Instance.new("TextLabel")
    4. local UICorner = Instance.new("UICorner")
    5. local bar = Instance.new("TextButton")
    6. local UICorner_2 = Instance.new("UICorner")
    7. local close = Instance.new("TextButton")
    8. local UICorner_3 = Instance.new("UICorner")
    9. local reb = Instance.new("TextButton")
    10. local UICorner_4 = Instance.new("UICorner")
    11. local speed = Instance.new("TextButton")
    12. local UICorner_5 = Instance.new("UICorner")
    13. local UICorner_6 = Instance.new("UICorner")
    14. local openmain = Instance.new("Frame")
    15. local open = Instance.new("TextButton")
    16. local UICorner_7 = Instance.new("UICorner")
    17. local UICorner_8 = Instance.new("UICorner")
    18.  
    19. --Properties:
    20.  
    21. ScreenGui.Parent = game.CoreGui
    22. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
    23.  
    24. main.Name = "main"
    25. main.Parent = ScreenGui
    26. main.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
    27. main.Position = UDim2.new(0.146997929, 0, 0.0784641057, 0)
    28. main.Size = UDim2.new(0, 344, 0, 246)
    29. main.Visible = false
    30. main.Active = true
    31. main.Draggable = true
    32.  
    33. ULShack.Name = "ULS hack"
    34. ULShack.Parent = main
    35. ULShack.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
    36. ULShack.Size = UDim2.new(0, 342, 0, 31)
    37. ULShack.Font = Enum.Font.GothamBold
    38. ULShack.Text = "ULS HACK!"
    39. ULShack.TextColor3 = Color3.fromRGB(255, 255, 0)
    40. ULShack.TextScaled = true
    41. ULShack.TextSize = 14.000
    42. ULShack.TextWrapped = true
    43.  
    44. UICorner.Parent = ULShack
    45.  
    46. bar.Name = "bar"
    47. bar.Parent = main
    48. bar.BackgroundColor3 = Color3.fromRGB(0, 255, 127)
    49. bar.Position = UDim2.new(0, 0, 0.167011172, 0)
    50. bar.Size = UDim2.new(0, 342, 0, 48)
    51. bar.Font = Enum.Font.GothamBold
    52. bar.Text = "Strenght script (clicks for more!)"
    53. bar.TextColor3 = Color3.fromRGB(0, 170, 255)
    54. bar.TextScaled = true
    55. bar.TextSize = 14.000
    56. bar.TextWrapped = true
    57.  
    58. UICorner_2.Parent = bar
    59. bar.MouseButton1Down:connect(function()
    60. local player = game.Players.LocalPlayer
    61. while (1) do
    62. wait()
    63. game:GetService("ReplicatedStorage").Events.bar:InvokeServer()
    64. end
    65. end)
    66.  
    67. close.Name = "close"
    68. close.Parent = main
    69. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
    70. close.Position = UDim2.new(0.891812861, 0, 0, 0)
    71. close.Size = UDim2.new(0, 37, 0, 31)
    72. close.Font = Enum.Font.GothamBold
    73. close.Text = "x"
    74. close.TextColor3 = Color3.fromRGB(0, 170, 255)
    75. close.TextScaled = true
    76. close.TextSize = 14.000
    77. close.TextWrapped = true
    78.  
    79. UICorner_3.Parent = close
    80. close.MouseButton1Down:connect(function()
    81. main.Visible = false
    82. openmain.Visible = true
    83. end)
    84.  
    85. reb.Name = "reb"
    86. reb.Parent = main
    87. reb.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
    88. reb.Position = UDim2.new(4.47034836e-08, 0, 0.440264553, 0)
    89. reb.Size = UDim2.new(0, 343, 0, 48)
    90. reb.Font = Enum.Font.GothamBold
    91. reb.Text = "Auto Reb!"
    92. reb.TextColor3 = Color3.fromRGB(0, 170, 255)
    93. reb.TextScaled = true
    94. reb.TextSize = 14.000
    95. reb.TextWrapped = true
    96.  
    97. UICorner_4.Parent = reb
    98. reb.MouseButton1Down:connect(function()
    99. local player = game.Players.LocalPlayer
    100. while (1) do
    101. wait()
    102. game:GetService("ReplicatedStorage").Events.Rebirth:InvokeServer()
    103. end
    104. end)
    105.  
    106. speed.Name = "speed"
    107. speed.Parent = main
    108. speed.BackgroundColor3 = Color3.fromRGB(85, 255, 127)
    109. speed.Position = UDim2.new(-0.00292397663, 0, 0.725988746, 0)
    110. speed.Size = UDim2.new(0, 343, 0, 48)
    111. speed.Font = Enum.Font.GothamBold
    112. speed.Text = "AutoSpeed (must equip flash pet)"
    113. speed.TextColor3 = Color3.fromRGB(0, 170, 255)
    114. speed.TextScaled = true
    115. speed.TextSize = 14.000
    116. speed.TextWrapped = true
    117.  
    118. UICorner_5.Parent = speed
    119.  
    120. UICorner_6.Parent = main
    121. speed.MouseButton1Down:connect(function()
    122. local player = game.Players.LocalPlayer
    123. while (1) do
    124. wait()
    125. game:GetService("ReplicatedStorage").Events.train:InvokeServer()
    126. end
    127. end)
    128.  
    129. openmain.Name = "openmain"
    130. openmain.Parent = ScreenGui
    131. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
    132. openmain.Position = UDim2.new(0, 0, 0.529215395, 0)
    133. openmain.Size = UDim2.new(0, 80, 0, 27)
    134. openmain.Active = true
    135. openmain.Draggable = true
    136.  
    137. open.Name = "open"
    138. open.Parent = openmain
    139. open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
    140. open.Size = UDim2.new(0, 80, 0, 27)
    141. open.Font = Enum.Font.GothamBold
    142. open.Text = "Open Gui"
    143. open.TextColor3 = Color3.fromRGB(255, 255, 255)
    144. open.TextScaled = true
    145. open.TextSize = 14.000
    146. open.TextWrapped = true
    147.  
    148. UICorner_7.Parent = open
    149.  
    150. UICorner_8.Parent = openmain
    151. open.MouseButton1Down:connect(function()
    152. openmain.Visible = false
    153. main.Visible = true
    154. end)
  • NBNj
    1 year
    # text 0.01 KB | 0 0
    1. Y
    2.  
    3. E
Add Comment
Please, Sign In to add comment
Advertisement