ivian

Hack game ALONE (GUI)

Jun 30th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. ---- New ALONE Menu (Updated 2/11/2018)
  2. local ScreenGui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  3. local Frame = Instance.new("Frame",ScreenGui)
  4. local TextButton = Instance.new("TextButton",Frame)
  5. local TextButton_2 = Instance.new("TextButton",Frame)
  6.  
  7.  
  8. ------ Properties
  9. Frame.BackgroundColor3 = Color3.new(99, 95, 98)
  10. Frame.Position = UDim2.new(0.0826971978, 0, 0.0383650064, 0)
  11. Frame.Size = UDim2.new(0, 106.5, 0, 106.5)
  12. Frame.Active = true
  13.  
  14. TextButton.Parent = Frame
  15. TextButton.BackgroundColor3 = Color3.new(99, 95, 98)
  16. TextButton.Position = UDim2.new(0, 0, 0.50, 0)
  17. TextButton.Size = UDim2.new(0, 106.5, 0, 50)
  18. TextButton.Font = Enum.Font.SourceSans
  19. TextButton.Text = "Vest TP"
  20. TextButton.TextSize = 14
  21. TextButton.Active = true
  22.  
  23. TextButton_2.BackgroundColor3 = Color3.new(99, 95, 98)
  24. TextButton_2.Position = UDim2.new(0, 0, 0.01, 0)
  25. TextButton_2.Size = UDim2.new(0, 106.5, 0, 50)
  26. TextButton_2.Font = Enum.Font.SourceSans
  27. TextButton_2.Text = "TP to Shop"
  28. TextButton_2.TextSize = 14
  29. TextButton_2.Active = true
  30.  
  31.  
  32. -- Vest TP
  33. TextButton.MouseButton1Click:connect(function()
  34. local vest = {"BulletVest1","BulletVest2","BulletVest3","BulletVest4"}
  35.  
  36. for i,v in next, vest do
  37. local obj = workspace.WorldItems:FindFirstChild(v)
  38. if obj then
  39. ent = obj:FindFirstChild("Vest Base",true)
  40. game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = ent.CFrame
  41. else
  42. print(v,"not found")
  43. end
  44. end
  45. end)
  46.  
  47. -- Shop TP
  48. TextButton_2.MouseButton1Click:connect(function()
  49. game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(31.044, 6.1287, 66.29901)
  50. end)
Add Comment
Please, Sign In to add comment