Advertisement
jakeisfunny101

Thingy 1.0

Feb 17th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.06 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local Bubbles = Instance.new("ScreenGui")
  7. local HackerGUI = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local Frame = Instance.new("Frame")
  10. local plus = Instance.new("TextButton")
  11. local tp = Instance.new("TextButton")
  12. local farm = Instance.new("TextButton")
  13. local Teleports = Instance.new("Frame")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15. local Frame_2 = Instance.new("Frame")
  16. local shop = Instance.new("TextButton")
  17. local shop2 = Instance.new("TextButton")
  18. local farm_2 = Instance.new("TextButton")
  19. local Credits = Instance.new("Frame")
  20. local TextLabel_3 = Instance.new("TextLabel")
  21. local Frame_3 = Instance.new("Frame")
  22. local TextLabel_4 = Instance.new("TextLabel")
  23. local dgui = Instance.new("TextButton")
  24.  
  25. --Properties:
  26.  
  27. Bubbles.Name = "Bubbles"
  28. Bubbles.Parent = game.CoreGui
  29.  
  30. HackerGUI.Name = "HackerGUI"
  31. HackerGUI.Parent = Bubbles
  32. HackerGUI.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  33. HackerGUI.Position = UDim2.new(0.0472697653, 0, 0.051364366, 0)
  34. HackerGUI.Size = UDim2.new(0, 213, 0, 219)
  35.  
  36. TextLabel.Parent = HackerGUI
  37. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  38. TextLabel.BackgroundTransparency = 1
  39. TextLabel.Position = UDim2.new(0.0281690136, 0, 0.00787716731, 0)
  40. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  41. TextLabel.Font = Enum.Font.GothamBold
  42. TextLabel.Text = "Perks"
  43. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  44. TextLabel.TextScaled = true
  45. TextLabel.TextSize = 14
  46. TextLabel.TextWrapped = true
  47.  
  48. Frame.Parent = HackerGUI
  49. Frame.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  50. Frame.BorderSizePixel = 0
  51. Frame.Position = UDim2.new(0, 0, 0.239043832, 0)
  52. Frame.Size = UDim2.new(0, 213, 0, 9)
  53.  
  54. plus.Name = "plus"
  55. plus.Parent = HackerGUI
  56. plus.BackgroundColor3 = Color3.new(0, 0, 0)
  57. plus.Position = UDim2.new(0.0281690136, 0, 0.322709173, 0)
  58. plus.Size = UDim2.new(0, 200, 0, 35)
  59. plus.Font = Enum.Font.GothamBold
  60. plus.Text = "Get Plus"
  61. plus.TextColor3 = Color3.new(1, 1, 1)
  62. plus.TextSize = 14
  63. plus.MouseButton1Down:connect(function()
  64. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  65. end)
  66.  
  67. tp.Name = "tp"
  68. tp.Parent = HackerGUI
  69. tp.BackgroundColor3 = Color3.new(0, 0, 0)
  70. tp.Position = UDim2.new(0.0281690136, 0, 0.537939548, 0)
  71. tp.Size = UDim2.new(0, 200, 0, 35)
  72. tp.Font = Enum.Font.GothamBold
  73. tp.Text = "Ctrl-Click TP"
  74. tp.TextColor3 = Color3.new(1, 1, 1)
  75. tp.TextSize = 14
  76. tp.MouseButton1Click:connect(function()
  77. local Player = game.Players.LocalPlayer
  78. local Mouse = Player:GetMouse()
  79. local UserInputService = game:GetService('UserInputService')
  80.  
  81. local HoldingControl = false
  82.  
  83. Mouse.Button1Down:connect(function()
  84. if HoldingControl then
  85. Player.Character:MoveTo(Mouse.Hit.p)
  86. end
  87. end)
  88.  
  89. UserInputService.InputBegan:connect(function(Input, Processed)
  90. if Input.UserInputType == Enum.UserInputType.Keyboard then
  91. if Input.KeyCode == Enum.KeyCode.LeftControl then
  92. HoldingControl = true
  93. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  94. HoldingControl = true
  95. end
  96. end
  97. end)
  98.  
  99. UserInputService.InputEnded:connect(function(Input, Processed)
  100. if Input.UserInputType == Enum.UserInputType.Keyboard then
  101. if Input.KeyCode == Enum.KeyCode.LeftControl then
  102. HoldingControl = false
  103. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  104. HoldingControl = false
  105. end
  106. end
  107. end)
  108. end)
  109.  
  110. farm.Name = "farm"
  111. farm.Parent = HackerGUI
  112. farm.BackgroundColor3 = Color3.new(0, 0, 0)
  113. farm.Position = UDim2.new(0.0281690136, 0, 0.753752112, 0)
  114. farm.Size = UDim2.new(0, 200, 0, 35)
  115. farm.Font = Enum.Font.GothamBold
  116. farm.Text = "Money Farm"
  117. farm.TextColor3 = Color3.new(1, 1, 1)
  118. farm.TextSize = 14
  119. farm.MouseButton1Click:connect(function()
  120. game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
  121. game.ReplicatedStorage.Connection:InvokeServer(50)
  122. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  123. while wait() do
  124. game.ReplicatedStorage.Connection:InvokeServer(49)
  125. game.ReplicatedStorage.Connection:InvokeServer(51)
  126. end
  127. end)
  128.  
  129. Teleports.Name = "Teleports"
  130. Teleports.Parent = Bubbles
  131. Teleports.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  132. Teleports.Position = UDim2.new(0.195489794, 0, 0.051364366, 0)
  133. Teleports.Size = UDim2.new(0, 213, 0, 219)
  134.  
  135. TextLabel_2.Parent = Teleports
  136. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  137. TextLabel_2.BackgroundTransparency = 1
  138. TextLabel_2.Position = UDim2.new(0.0281690136, 0, 0.00787716731, 0)
  139. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  140. TextLabel_2.Font = Enum.Font.GothamBold
  141. TextLabel_2.Text = "Teleports"
  142. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  143. TextLabel_2.TextScaled = true
  144. TextLabel_2.TextSize = 14
  145. TextLabel_2.TextWrapped = true
  146.  
  147. Frame_2.Parent = Teleports
  148. Frame_2.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  149. Frame_2.BorderSizePixel = 0
  150. Frame_2.Position = UDim2.new(0, 0, 0.239043832, 0)
  151. Frame_2.Size = UDim2.new(0, 213, 0, 9)
  152.  
  153. shop.Name = "shop"
  154. shop.Parent = Teleports
  155. shop.BackgroundColor3 = Color3.new(0, 0, 0)
  156. shop.Position = UDim2.new(0.0281690136, 0, 0.322709173, 0)
  157. shop.Size = UDim2.new(0, 200, 0, 35)
  158. shop.Font = Enum.Font.GothamBold
  159. shop.Text = "House Shop"
  160. shop.TextColor3 = Color3.new(1, 1, 1)
  161. shop.TextSize = 14
  162. shop.MouseButton1Click:connect(function()
  163. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(211.1, 535.919, -850.18)
  164. end)
  165.  
  166. shop2.Name = "shop2"
  167. shop2.Parent = Teleports
  168. shop2.BackgroundColor3 = Color3.new(0, 0, 0)
  169. shop2.Position = UDim2.new(0.0281690136, 0, 0.537939548, 0)
  170. shop2.Size = UDim2.new(0, 200, 0, 35)
  171. shop2.Font = Enum.Font.GothamBold
  172. shop2.Text = "Decorate Shop"
  173. shop2.TextColor3 = Color3.new(1, 1, 1)
  174. shop2.TextSize = 14
  175. shop2.MouseButton1Click:connect(function()
  176. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-148.8, 528.23, -838.24)
  177. end)
  178.  
  179. farm_2.Name = "farm"
  180. farm_2.Parent = Teleports
  181. farm_2.BackgroundColor3 = Color3.new(0, 0, 0)
  182. farm_2.Position = UDim2.new(0.0281690136, 0, 0.753752112, 0)
  183. farm_2.Size = UDim2.new(0, 200, 0, 35)
  184. farm_2.Font = Enum.Font.GothamBold
  185. farm_2.Text = "Player Spawn"
  186. farm_2.TextColor3 = Color3.new(1, 1, 1)
  187. farm_2.TextSize = 14
  188. farm_2.MouseButton1Click:connect(function()
  189. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(26.959, -9.615, 79.099)
  190. end)
  191.  
  192. Credits.Name = "Credits"
  193. Credits.Parent = Bubbles
  194. Credits.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  195. Credits.Position = UDim2.new(0.342090875, 0, 0.051364366, 0)
  196. Credits.Size = UDim2.new(0, 213, 0, 219)
  197.  
  198. TextLabel_3.Parent = Credits
  199. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  200. TextLabel_3.BackgroundTransparency = 1
  201. TextLabel_3.Position = UDim2.new(0.0281690136, 0, 0.00787716731, 0)
  202. TextLabel_3.Size = UDim2.new(0, 200, 0, 50)
  203. TextLabel_3.Font = Enum.Font.GothamBold
  204. TextLabel_3.Text = "Credits"
  205. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  206. TextLabel_3.TextScaled = true
  207. TextLabel_3.TextSize = 14
  208. TextLabel_3.TextWrapped = true
  209.  
  210. Frame_3.Parent = Credits
  211. Frame_3.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  212. Frame_3.BorderSizePixel = 0
  213. Frame_3.Position = UDim2.new(0, 0, 0.239043832, 0)
  214. Frame_3.Size = UDim2.new(0, 213, 0, 9)
  215.  
  216. TextLabel_4.Parent = Credits
  217. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  218. TextLabel_4.BackgroundTransparency = 1
  219. TextLabel_4.Position = UDim2.new(0.0281690136, 0, 0.322945654, 0)
  220. TextLabel_4.Size = UDim2.new(0, 200, 0, 94)
  221. TextLabel_4.Font = Enum.Font.GothamBold
  222. TextLabel_4.Text = "All the credits goes to Anonymous404#6241 for all of this hard work put into the script."
  223. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  224. TextLabel_4.TextScaled = true
  225. TextLabel_4.TextSize = 14
  226. TextLabel_4.TextWrapped = true
  227.  
  228. dgui.Name = "dgui"
  229. dgui.Parent = Credits
  230. dgui.BackgroundColor3 = Color3.new(0, 0, 0)
  231. dgui.Position = UDim2.new(0.0281690136, 0, 0.757117629, 0)
  232. dgui.Size = UDim2.new(0, 200, 0, 35)
  233. dgui.Font = Enum.Font.GothamBold
  234. dgui.Text = "Destroy GUI"
  235. dgui.TextColor3 = Color3.new(1, 1, 1)
  236. dgui.TextSize = 14
  237. dgui.MouseButton1Down:connect(function()
  238. HackerGUI.Visible = false
  239. Teleports.Visible = false
  240. Credits.Visible = false
  241. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement