Nghientapgym

One piece

May 27th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Gui = Instance.new("Frame")
  5. local Frame = Instance.new("Frame")
  6. local TextButton = Instance.new("TextButton")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local nts = game.Players.LocalPlayer.PlayerGui
  10.  
  11. -- Properties
  12.  
  13. ScreenGui.Parent = nts
  14.  
  15. Gui.Name = "Gui"
  16. Gui.Parent = ScreenGui
  17. Gui.BackgroundColor3 = Color3.new(1, 1, 1)
  18. Gui.Position = UDim2.new(0, 740, 0, 400)
  19.  
  20. Frame.Parent = Gui
  21. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  22. Frame.BackgroundTransparency = 0.44999998807907
  23. Frame.BorderSizePixel = 0
  24. Frame.Position = UDim2.new(0, -360, 0, 0)
  25. Frame.Size = UDim2.new(0, 750, 0, 220)
  26.  
  27. TextButton.Parent = Gui
  28. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  29. TextButton.BackgroundTransparency = 0.10000000149012
  30. TextButton.Position = UDim2.new(0, -360, 0, 101)
  31. TextButton.Size = UDim2.new(0, 200, 0, 50)
  32. TextButton.Font = Enum.Font.SourceSans
  33. TextButton.Text = "BELI"
  34. TextButton.TextColor3 = Color3.new(1, 0, 0)
  35. TextButton.TextSize = 50
  36. TextButton.MouseButton1Down:connect(function()
  37. while wait(.1) do
  38. for i,v in pairs (game.Workspace:GetChildren()) do
  39. if v.Name=='chest' then
  40. v.p2.Script.Disabled = false
  41. v.p2.Script.Disabled = true
  42. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.p2.CFrame
  43. end
  44. end
  45. end
  46.  
  47.  
  48.  
  49. end)
  50. TextButton_2.Parent = Gui
  51. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  52. TextButton_2.BackgroundTransparency = 0.10000000149012
  53. TextButton_2.Position = UDim2.new(0, 191, 0, 103)
  54. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  55. TextButton_2.Font = Enum.Font.SourceSans
  56. TextButton_2.Text = "DF Tele"
  57. TextButton_2.TextColor3 = Color3.new(1, 0, 0)
  58. TextButton_2.TextSize = 50
  59. TextButton_2.MouseButton1Down:connect(function()
  60. check = function(x)
  61. for _,v in next, x:GetChildren() do
  62. if v:IsA("Tool") then
  63. if not v.Parent:FindFirstChild("Humanoid") then
  64. v.TextureId = "";
  65. v.Parent = game.Players.LocalPlayer.Backpack
  66. end
  67. end
  68. check(v)
  69. end
  70. end
  71. check(workspace)
  72. end)
  73.  
  74. TextLabel.Parent = Gui
  75. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  76. TextLabel.Position = UDim2.new(0, -359, 0, 0)
  77. TextLabel.Size = UDim2.new(0, 745, 0, 50)
  78. TextLabel.Font = Enum.Font.SourceSans
  79. TextLabel.Text = "Zero Two AKA AnhtuanHuynh"
  80. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  81. TextLabel.TextSize = 50
Advertisement
Add Comment
Please, Sign In to add comment