Advertisement
Frozz_Hub

Alone GUI

Apr 1st, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.24 KB | None | 0 0
  1. local ALONE_GUI = Instance.new("ScreenGui")
  2. local MainFrame = Instance.new("Frame")
  3. local Bar = Instance.new("Frame")
  4. local Exit = Instance.new("TextLabel")
  5. local Title = Instance.new("TextLabel")
  6. local PawnShop = Instance.new("TextButton")
  7. local Teleports = Instance.new("TextLabel")
  8. local Factory = Instance.new("TextButton")
  9. local GunShop = Instance.new("TextButton")
  10. local TactVestFarm = Instance.new("TextButton")
  11. local SpawnTP = Instance.new("TextButton")
  12. local Credits = Instance.new("TextLabel")
  13. local Credits_Frame = Instance.new("Frame")
  14. local TextLabel = Instance.new("TextLabel")
  15. local TextLabel_2 = Instance.new("TextLabel")
  16. local TextLabel_3 = Instance.new("TextLabel")
  17. local RandomTP = Instance.new("TextButton")
  18. local Misc = Instance.new("TextLabel")
  19. local InfAmmo = Instance.new("TextButton")
  20. local Information = Instance.new("TextLabel")
  21. local Information_2 = Instance.new("TextLabel")
  22. local ChatSpam = Instance.new("TextButton")
  23. local Information_3 = Instance.new("TextLabel")
  24. local OpenClose = Instance.new("TextButton")
  25.  
  26. -- Properties
  27.  
  28. ALONE_GUI.Name = "ALONE_GUI"
  29. ALONE_GUI.Parent = game.CoreGui
  30.  
  31. MainFrame.Name = "MainFrame"
  32. MainFrame.Parent = ALONE_GUI
  33. MainFrame.Draggable = true
  34. MainFrame.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  35. MainFrame.BorderColor3 = Color3.new(1, 1, 1)
  36. MainFrame.BorderSizePixel = 0
  37. MainFrame.Position = UDim2.new(0.210387349, 0, 0.313479602, 0)
  38. MainFrame.Size = UDim2.new(0, 308, 0, 355)
  39.  
  40. Bar.Name = "Bar"
  41. Bar.Parent = MainFrame
  42. Bar.BackgroundColor3 = Color3.new(0, 0.45098, 0.678431)
  43. Bar.BorderColor3 = Color3.new(1, 1, 1)
  44. Bar.BorderSizePixel = 0
  45. Bar.Position = UDim2.new(0, 0, -0.0732394382, 0)
  46. Bar.Size = UDim2.new(0, 308, 0, 26)
  47.  
  48. Exit.Name = "Exit"
  49. Exit.Parent = Bar
  50. Exit.BackgroundColor3 = Color3.new(0, 0.415686, 0.623529)
  51. Exit.BorderSizePixel = 0
  52. Exit.Position = UDim2.new(0.909090936, 0, 0, 0)
  53. Exit.Size = UDim2.new(0, 28, 0, 25)
  54. Exit.Font = Enum.Font.Highway
  55. Exit.Text = "X"
  56. Exit.TextScaled = true
  57. Exit.TextSize = 14
  58. Exit.TextWrapped = true
  59.  
  60. Title.Name = "Title"
  61. Title.Parent = Bar
  62. Title.BackgroundColor3 = Color3.new(0, 0.415686, 0.623529)
  63. Title.BorderSizePixel = 0
  64. Title.Size = UDim2.new(0, 150, 0, 25)
  65. Title.Font = Enum.Font.Highway
  66. Title.Text = "ALONE GUI"
  67. Title.TextColor3 = Color3.new(1, 1, 1)
  68. Title.TextScaled = true
  69. Title.TextSize = 14
  70. Title.TextWrapped = true
  71.  
  72. PawnShop.Name = "PawnShop"
  73. PawnShop.Parent = MainFrame
  74. PawnShop.BackgroundColor3 = Color3.new(1, 1, 1)
  75. PawnShop.Position = UDim2.new(0.019480519, 0, 0.104225352, 0)
  76. PawnShop.Size = UDim2.new(0, 121, 0, 30)
  77. PawnShop.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  78. PawnShop.Font = Enum.Font.Highway
  79. PawnShop.Text = "Pawn Shop"
  80. PawnShop.TextSize = 20
  81. PawnShop.TextWrapped = true
  82.  
  83. Teleports.Name = "Teleports"
  84. Teleports.Parent = MainFrame
  85. Teleports.BackgroundColor3 = Color3.new(0, 0.435294, 0.654902)
  86. Teleports.BorderSizePixel = 0
  87. Teleports.Position = UDim2.new(0.019480519, 0, 0.0197183099, 0)
  88. Teleports.Size = UDim2.new(0, 121, 0, 23)
  89. Teleports.Font = Enum.Font.Highway
  90. Teleports.Text = "TELEPORTS"
  91. Teleports.TextColor3 = Color3.new(1, 1, 1)
  92. Teleports.TextSize = 20
  93. Teleports.TextWrapped = true
  94.  
  95. Factory.Name = "Factory"
  96. Factory.Parent = MainFrame
  97. Factory.BackgroundColor3 = Color3.new(1, 1, 1)
  98. Factory.Position = UDim2.new(0.019480519, 0, 0.188732386, 0)
  99. Factory.Size = UDim2.new(0, 121, 0, 30)
  100. Factory.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  101. Factory.Font = Enum.Font.Highway
  102. Factory.Text = "Factory"
  103. Factory.TextSize = 20
  104. Factory.TextWrapped = true
  105.  
  106. GunShop.Name = "GunShop"
  107. GunShop.Parent = MainFrame
  108. GunShop.BackgroundColor3 = Color3.new(1, 1, 1)
  109. GunShop.Position = UDim2.new(0.019480519, 0, 0.273239434, 0)
  110. GunShop.Size = UDim2.new(0, 121, 0, 30)
  111. GunShop.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  112. GunShop.Font = Enum.Font.Highway
  113. GunShop.Text = "Gun Shop"
  114. GunShop.TextSize = 20
  115. GunShop.TextWrapped = true
  116.  
  117. TactVestFarm.Name = "TactVestFarm"
  118. TactVestFarm.Parent = MainFrame
  119. TactVestFarm.BackgroundColor3 = Color3.new(1, 1, 1)
  120. TactVestFarm.Position = UDim2.new(0.019480519, 0, 0.357746482, 0)
  121. TactVestFarm.Size = UDim2.new(0, 121, 0, 30)
  122. TactVestFarm.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  123. TactVestFarm.Font = Enum.Font.Highway
  124. TactVestFarm.Text = "Tact Vest"
  125. TactVestFarm.TextSize = 20
  126. TactVestFarm.TextWrapped = true
  127.  
  128. SpawnTP.Name = "SpawnTP"
  129. SpawnTP.Parent = MainFrame
  130. SpawnTP.BackgroundColor3 = Color3.new(1, 1, 1)
  131. SpawnTP.Position = UDim2.new(0.019480519, 0, 0.44225353, 0)
  132. SpawnTP.Size = UDim2.new(0, 121, 0, 30)
  133. SpawnTP.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  134. SpawnTP.Font = Enum.Font.Highway
  135. SpawnTP.Text = "Spawn TP"
  136. SpawnTP.TextSize = 20
  137. SpawnTP.TextWrapped = true
  138.  
  139. Credits.Name = "Credits"
  140. Credits.Parent = MainFrame
  141. Credits.BackgroundColor3 = Color3.new(0, 0.435294, 0.654902)
  142. Credits.BorderSizePixel = 0
  143. Credits.Position = UDim2.new(0.587662339, 0, 0.0197183099, 0)
  144. Credits.Size = UDim2.new(0, 121, 0, 23)
  145. Credits.Font = Enum.Font.Highway
  146. Credits.Text = "CREDITS"
  147. Credits.TextColor3 = Color3.new(1, 1, 1)
  148. Credits.TextSize = 20
  149. Credits.TextWrapped = true
  150.  
  151. Credits_Frame.Name = "Credits_Frame"
  152. Credits_Frame.Parent = MainFrame
  153. Credits_Frame.BackgroundColor3 = Color3.new(0, 0.443137, 0.666667)
  154. Credits_Frame.BorderSizePixel = 0
  155. Credits_Frame.Position = UDim2.new(0.587662339, 0, 0.104225352, 0)
  156. Credits_Frame.Size = UDim2.new(0, 121, 0, 198)
  157.  
  158. TextLabel.Parent = Credits_Frame
  159. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  160. TextLabel.BackgroundTransparency = 1
  161. TextLabel.BorderSizePixel = 0
  162. TextLabel.Size = UDim2.new(0, 121, 0, 30)
  163. TextLabel.Font = Enum.Font.Highway
  164. TextLabel.Text = "UI By: Woke#7979"
  165. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  166. TextLabel.TextScaled = true
  167. TextLabel.TextSize = 14
  168. TextLabel.TextWrapped = true
  169.  
  170. TextLabel_2.Parent = Credits_Frame
  171. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  172. TextLabel_2.BackgroundTransparency = 1
  173. TextLabel_2.BorderSizePixel = 0
  174. TextLabel_2.Position = UDim2.new(0, 0, 0.151515156, 0)
  175. TextLabel_2.Size = UDim2.new(0, 121, 0, 30)
  176. TextLabel_2.Font = Enum.Font.Highway
  177. TextLabel_2.Text = "Scripts from V3rm"
  178. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  179. TextLabel_2.TextScaled = true
  180. TextLabel_2.TextSize = 14
  181. TextLabel_2.TextWrapped = true
  182.  
  183. TextLabel_3.Parent = Credits_Frame
  184. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  185. TextLabel_3.BackgroundTransparency = 1
  186. TextLabel_3.BorderSizePixel = 0
  187. TextLabel_3.Position = UDim2.new(0, 0, 0.303030312, 0)
  188. TextLabel_3.Size = UDim2.new(0, 121, 0, 30)
  189. TextLabel_3.Font = Enum.Font.Highway
  190. TextLabel_3.Text = "Discord: https://discord.gg/bJtMUkG"
  191. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  192. TextLabel_3.TextScaled = true
  193. TextLabel_3.TextSize = 14
  194. TextLabel_3.TextWrapped = true
  195.  
  196. RandomTP.Name = "RandomTP"
  197. RandomTP.Parent = MainFrame
  198. RandomTP.BackgroundColor3 = Color3.new(1, 1, 1)
  199. RandomTP.Position = UDim2.new(0.019480519, 0, 0.895774662, 0)
  200. RandomTP.Size = UDim2.new(0, 121, 0, 30)
  201. RandomTP.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  202. RandomTP.Font = Enum.Font.Highway
  203. RandomTP.Text = "TP TO RANDOM ITEMS"
  204. RandomTP.TextSize = 10
  205. RandomTP.TextWrapped = true
  206.  
  207. Misc.Name = "Misc"
  208. Misc.Parent = MainFrame
  209. Misc.BackgroundColor3 = Color3.new(0, 0.435294, 0.654902)
  210. Misc.BorderSizePixel = 0
  211. Misc.Position = UDim2.new(0.019480519, 0, 0.597183108, 0)
  212. Misc.Size = UDim2.new(0, 169, 0, 23)
  213. Misc.Font = Enum.Font.Highway
  214. Misc.Text = "MISC"
  215. Misc.TextColor3 = Color3.new(1, 1, 1)
  216. Misc.TextSize = 20
  217. Misc.TextWrapped = true
  218.  
  219. InfAmmo.Name = "InfAmmo"
  220. InfAmmo.Parent = MainFrame
  221. InfAmmo.BackgroundColor3 = Color3.new(1, 1, 1)
  222. InfAmmo.Position = UDim2.new(0.019480519, 0, 0.794366241, 0)
  223. InfAmmo.Size = UDim2.new(0, 121, 0, 30)
  224. InfAmmo.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  225. InfAmmo.Font = Enum.Font.Highway
  226. InfAmmo.Text = "Inf Ammo"
  227. InfAmmo.TextSize = 20
  228. InfAmmo.TextWrapped = true
  229.  
  230. Information.Name = "Information"
  231. Information.Parent = MainFrame
  232. Information.BackgroundColor3 = Color3.new(0, 0.435294, 0.654902)
  233. Information.BorderSizePixel = 0
  234. Information.Position = UDim2.new(0.431818187, 0, 0.804225326, 0)
  235. Information.Size = UDim2.new(0, 175, 0, 23)
  236. Information.Font = Enum.Font.Highway
  237. Information.Text = "Will give you inf ammo."
  238. Information.TextColor3 = Color3.new(1, 1, 1)
  239. Information.TextScaled = true
  240. Information.TextSize = 20
  241. Information.TextWrapped = true
  242.  
  243. Information_2.Name = "Information"
  244. Information_2.Parent = MainFrame
  245. Information_2.BackgroundColor3 = Color3.new(0, 0.435294, 0.654902)
  246. Information_2.BorderSizePixel = 0
  247. Information_2.Position = UDim2.new(0.431818187, 0, 0.904225349, 0)
  248. Information_2.Size = UDim2.new(0, 175, 0, 23)
  249. Information_2.Font = Enum.Font.Highway
  250. Information_2.Text = "Will enable a keybind to teleport to random items. [E]"
  251. Information_2.TextColor3 = Color3.new(1, 1, 1)
  252. Information_2.TextScaled = true
  253. Information_2.TextSize = 20
  254. Information_2.TextWrapped = true
  255.  
  256. ChatSpam.Name = "ChatSpam"
  257. ChatSpam.Parent = MainFrame
  258. ChatSpam.BackgroundColor3 = Color3.new(1, 1, 1)
  259. ChatSpam.Position = UDim2.new(0.019480519, 0, 0.690140843, 0)
  260. ChatSpam.Size = UDim2.new(0, 121, 0, 30)
  261. ChatSpam.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  262. ChatSpam.Font = Enum.Font.Highway
  263. ChatSpam.Text = "Chat Spam"
  264. ChatSpam.TextSize = 20
  265. ChatSpam.TextWrapped = true
  266.  
  267. Information_3.Name = "Information"
  268. Information_3.Parent = MainFrame
  269. Information_3.BackgroundColor3 = Color3.new(0, 0.435294, 0.654902)
  270. Information_3.BorderSizePixel = 0
  271. Information_3.Position = UDim2.new(0.431818187, 0, 0.699999988, 0)
  272. Information_3.Size = UDim2.new(0, 175, 0, 23)
  273. Information_3.Font = Enum.Font.Highway
  274. Information_3.Text = "Spams the chat (lol)"
  275. Information_3.TextColor3 = Color3.new(1, 1, 1)
  276. Information_3.TextScaled = true
  277. Information_3.TextSize = 20
  278. Information_3.TextWrapped = true
  279.  
  280. OpenClose.Name = "Open/Close"
  281. OpenClose.Parent = ALONE_GUI
  282. OpenClose.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  283. OpenClose.BorderColor3 = Color3.new(0, 0.427451, 0.639216)
  284. OpenClose.BorderSizePixel = 5
  285. OpenClose.Position = UDim2.new(0, 0, 0.537617564, 0)
  286. OpenClose.Size = UDim2.new(0, 195, 0, 44)
  287. OpenClose.Font = Enum.Font.Highway
  288. OpenClose.Text = "Open/Close"
  289. OpenClose.TextColor3 = Color3.new(1, 1, 1)
  290. OpenClose.TextSize = 30
  291. OpenClose.TextWrapped = true
  292.  
  293. -- functions lol
  294.  
  295. PawnShop.MouseButton1Click:connect(function()
  296. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(31.7124729, 5.39661455, 50.5575943))
  297. end)
  298. GunShop.MouseButton1Click:connect(function()
  299. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-114.510422, 6.13872433, 55.7958412))
  300. end)
  301. TactVestFarm.MouseButton1Click:connect(function()
  302. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(445.367828, 5.02908754, -1412.38513))
  303. end)
  304. Factory.MouseButton1Click:connect(function()
  305. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-515.606689, 3.73840618, -973.149658))
  306. end)
  307. SpawnTP.MouseButton1Click:connect(function()
  308. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-32.6829491, 5.59872007, -7.1303215))
  309. end)
  310.  
  311. -- misc functions
  312.  
  313. ChatSpam.MouseButton1Click:connect(function()
  314. for y=1,100 do
  315. wait(.2)
  316. game.ReplicatedStorage.Remotes.Chat:FireServer({["Message"] = "hueeeeeeeeeeeeeeeeeeeeeeeee", ["Player"] = game.Players.Creamiies,["Character"] = game.Workspace.Characters.Creamiies})
  317. end
  318. end)
  319.  
  320. InfAmmo.MouseButton1Click:connect(function()
  321. while true do
  322. game["Run Service"].RenderStepped:wait()
  323. wait(0.45)
  324. game.ReplicatedStorage.Remotes.Inventory:FireServer("Reload")
  325. end
  326. end)
  327.  
  328. RandomTP.MouseButton1Click:connect(function()
  329. plr = game.Players.LocalPlayer
  330. hum = plr.Character.HumanoidRootPart
  331. mouse = game.Players.LocalPlayer:GetMouse()
  332.  
  333. mouse.KeyDown:connect(function(key)
  334. if key == "e" then
  335. if mouse.Target then
  336. for i,v in pairs(workspace.WorldItems:GetChildren())do
  337. if v.Name == "BulletVest2" or v.Name == "BulletVest1" or v.Name == "BulletVest3" or v.Name == "BulletVest4" or v.Name == "Medkit" or v.Name == "MRE" or v.Name == "Hammer" or v.Name == "SteelPipe" or v.Name == "PoliceBaton" then
  338. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.MainPart.Position)
  339. end
  340. end
  341. end
  342. end
  343. end)
  344. end)
  345.  
  346. -- open & close functions
  347.  
  348. local open = false
  349.  
  350. OpenClose.MouseButton1Click:connect(function()
  351. if MainFrame.Visible == false then
  352. MainFrame.Visible = true
  353. else
  354. MainFrame.Visible = false
  355. end
  356. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement