Advertisement
Guest User

Untitled

a guest
May 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.15 KB | None | 0 0
  1. -- Detection
  2.  
  3. if game.Players.rocket12211.PlayerGui:FindFirstChild("Hax") then
  4. game.Players.rocket12211.PlayerGui.Hax:Destroy()
  5. end
  6.  
  7. -- Objects
  8.  
  9. local Hax = Instance.new("ScreenGui")
  10. local Main = Instance.new("Frame")
  11. local Overused = Instance.new("Frame")
  12. local Header = Instance.new("Frame")
  13. local Buttons = Instance.new("Frame")
  14. local Save = Instance.new("TextButton")
  15. local Receive = Instance.new("TextButton")
  16. local Noclip = Instance.new("TextButton")
  17. local Minimize = Instance.new("TextButton")
  18. local Close = Instance.new("TextButton")
  19. local Text = Instance.new("TextButton")
  20.  
  21. -- Properties
  22.  
  23. Hax.Name = "Hax"
  24. Hax.Parent = game.Players.rocket12211.PlayerGui
  25.  
  26. Main.Name = "Main"
  27. Main.Parent = Hax
  28. Main.Draggable = true
  29. Main.Selectable = true
  30. Main.Active = true
  31. Main.BackgroundColor3 = Color3.new(0.184314, 0.635294, 0.827451)
  32. Main.BorderSizePixel = 0
  33. Main.Position = UDim2.new(0.302982718, 0, 0.271111101, 0)
  34. Main.Size = UDim2.new(0, 503, 0, 386)
  35.  
  36.  
  37. Overused.Name = "Overused"
  38. Overused.Parent = Main
  39. Overused.BackgroundColor3 = Color3.new(0.188235, 0.654902, 0.85098)
  40. Overused.BorderSizePixel = 0
  41. Overused.Size = UDim2.new(0, 503, 0, 23)
  42.  
  43. Header.Name = "Header"
  44. Header.Parent = Overused
  45. Header.BackgroundColor3 = Color3.new(0.223529, 0.768628, 1)
  46. Header.BorderSizePixel = 0
  47. Header.Position = UDim2.new(-0.000994035741, 0, 1.19487429, 0)
  48. Header.Size = UDim2.new(0, 503, 0, 68)
  49.  
  50. Buttons.Name = "Buttons"
  51. Buttons.Parent = Header
  52. Buttons.BackgroundColor3 = Color3.new(0.203922, 0.729412, 0.933333)
  53. Buttons.BorderSizePixel = 0
  54. Buttons.Position = UDim2.new(0.0198807158, 0, 1.15793204, 0)
  55. Buttons.Size = UDim2.new(0, 483, 0, 269)
  56.  
  57. Save.Name = "Save"
  58. Save.Parent = Buttons
  59. Save.BackgroundColor3 = Color3.new(0.184314, 0.635294, 0.827451)
  60. Save.BorderSizePixel = 0
  61. Save.Position = UDim2.new(0.292960674, 0, 0.128252804, 0)
  62. Save.Size = UDim2.new(0, 200, 0, 50)
  63. Save.Font = Enum.Font.SourceSansBold
  64. Save.Text = "Save Tool"
  65. Save.TextColor3 = Color3.new(1, 1, 1)
  66. Save.TextSize = 20
  67. Save.MouseButton1Click:Connect(function()
  68. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  69. if (v:IsA("Tool")) then
  70. v.Parent = game.Players.LocalPlayer
  71. end
  72. end
  73. end)
  74.  
  75. Receive.Name = "Receive"
  76. Receive.Parent = Buttons
  77. Receive.BackgroundColor3 = Color3.new(0.184314, 0.635294, 0.827451)
  78. Receive.BorderSizePixel = 0
  79. Receive.Position = UDim2.new(0.293995917, 0, 0.617100358, 0)
  80. Receive.Size = UDim2.new(0, 200, 0, 50)
  81. Receive.Font = Enum.Font.SourceSansBold
  82. Receive.Text = "Receive Tool"
  83. Receive.TextColor3 = Color3.new(1, 1, 1)
  84. Receive.TextSize = 20
  85. Receive.MouseButton1Click:Connect(function()
  86. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  87. if (v:IsA("Tool")) then
  88. v.Parent = game.Players.LocalPlayer.Backpack
  89. end
  90. end
  91. end)
  92.  
  93. Noclip.Name = "Noclip"
  94. Noclip.Parent = Buttons
  95. Noclip.BackgroundColor3 = Color3.new(0.184314, 0.635294, 0.827451)
  96. Noclip.BorderSizePixel = 0
  97. Noclip.Position = UDim2.new(0.29192549, 0, 0.371747196, 0)
  98. Noclip.Size = UDim2.new(0, 200, 0, 50)
  99. Noclip.Font = Enum.Font.SourceSansBold
  100. Noclip.Text = "Noclip (E)"
  101. Noclip.TextColor3 = Color3.new(1, 1, 1)
  102. Noclip.TextSize = 20
  103. Noclip.MouseButton1Click:Connect(function()
  104. noclip = false
  105. game:GetService('RunService').Stepped:connect(function()
  106. if noclip then
  107. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  108. end
  109. end)
  110. plr = game.Players.LocalPlayer
  111. mouse = plr:GetMouse()
  112. mouse.KeyDown:connect(function(key)
  113.  
  114. if key == "e" then
  115. noclip = not noclip
  116. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  117. end
  118. end)
  119. print('Created by FileExplorer')
  120. print('Credits to Peyton for the ChangeState part of this script')
  121. end)
  122.  
  123. Minimize.Name = "Minimize"
  124. Minimize.Parent = Main
  125. Minimize.BackgroundColor3 = Color3.new(1, 1, 1)
  126. Minimize.BackgroundTransparency = 1
  127. Minimize.Position = UDim2.new(0.886679947, 0, 0.000303239562, 0)
  128. Minimize.Size = UDim2.new(0, 41, 0, 23)
  129. Minimize.Font = Enum.Font.SourceSansSemibold
  130. Minimize.Text = "_"
  131. Minimize.TextColor3 = Color3.new(1, 1, 1)
  132. Minimize.TextSize = 20
  133. Minimize.MouseButton1Click:Connect(function()
  134. Main:TweenPosition(UDim2.new(0.74, 0, 0.973, 0), 'Out', 'Quart', 2)
  135. end)
  136.  
  137. Close.Name = "Close"
  138. Close.Parent = Main
  139. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  140. Close.BackgroundTransparency = 1
  141. Close.Position = UDim2.new(0.942345917, 0, 0, 0)
  142. Close.Size = UDim2.new(0, 29, 0, 27)
  143. Close.Font = Enum.Font.Arcade
  144. Close.Text = "X"
  145. Close.TextColor3 = Color3.new(1, 1, 1)
  146. Close.TextSize = 15
  147. Close.MouseButton1Click:Connect(function()
  148. Main:TweenPosition(UDim2.new(0.74, 0, 0.999, 0), 'Out', 'Quart', 2)
  149. wait(1.5)
  150. game.Players.rocket12211.PlayerGui.Hax:Destroy()
  151. end)
  152.  
  153. Text.Name = "Text"
  154. Text.Parent = Main
  155. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  156. Text.BackgroundTransparency = 1
  157. Text.Position = UDim2.new(0.17693837, 0, 0.0933268741, 0)
  158. Text.Size = UDim2.new(0, 310, 0, 51)
  159. Text.Font = Enum.Font.SourceSansBold
  160. Text.Text = "Save Tool/Receive Tool GUI"
  161. Text.TextColor3 = Color3.new(1, 1, 1)
  162. Text.TextSize = 30
  163. Text.MouseButton1Click:Connect(function()
  164. Text.Text = "Made by BaconExploitz (BaconExploitz#0001)"
  165. Text.TextSize = 27
  166. wait(1)
  167. Text.Text = "Save Tool/Receive Tool GUI"
  168. Text.TextSize = 30
  169. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement