tristanlol123

【🍎】Bloxfruit Auto TP Chest Script GUI

Oct 13th, 2021 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.86 KB | None | 0 0
  1. -- Instances:
  2.  
  3. local InsertedObjects = Instance.new("ScreenGui")
  4. local Gradient = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local UIGradient = Instance.new("UIGradient")
  7. local UICorner = Instance.new("UICorner")
  8. local UncommonChestButton = Instance.new("TextButton")
  9. local Shadow = Instance.new("Frame")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11. local RareChestButton = Instance.new("TextButton")
  12. local Shadow_2 = Instance.new("Frame")
  13. local TextLabel_3 = Instance.new("TextLabel")
  14. local CommonChestButton = Instance.new("TextButton")
  15. local Shadow_3 = Instance.new("Frame")
  16. local TextLabel_4 = Instance.new("TextLabel")
  17. local AntiAFKButton = Instance.new("TextButton")
  18. local Shadow_4 = Instance.new("Frame")
  19. local TextLabel_5 = Instance.new("TextLabel")
  20. local Players = game.Players
  21. local Player = Players.LocalPlayer
  22.  
  23. --Properties:
  24.  
  25. InsertedObjects.Name = "InsertedObjects"
  26. InsertedObjects.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  27. InsertedObjects.Parent = game.CoreGui
  28.  
  29. Gradient.Name = "Gradient"
  30. Gradient.Parent = InsertedObjects
  31. Gradient.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. Gradient.BorderColor3 = Color3.fromRGB(27, 42, 53)
  33. Gradient.BorderSizePixel = 0
  34. Gradient.Position = UDim2.new(0.394440025, 0, 0.378095239, 0)
  35. Gradient.Size = UDim2.new(0, 202, 0, 265)
  36. Gradient.Active = true
  37. Gradient.Draggable = true
  38. function onKeyPress(inputObject, gameProcessedEvent)
  39.     if inputObject.KeyCode == Enum.KeyCode.RightShift then
  40.         if Gradient.Visible == false then
  41.             Gradient.Visible = true
  42.         else
  43.             Gradient.Visible = false
  44.         end
  45.     end
  46. end
  47.  
  48. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  49.  
  50. TextLabel.Parent = Gradient
  51. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  52. TextLabel.BackgroundTransparency = 100.000
  53. TextLabel.Position = UDim2.new(0.00335091352, 0, -0.0265522301, 0)
  54. TextLabel.Size = UDim2.new(0, 202, 0, 50)
  55. TextLabel.Font = Enum.Font.SourceSans
  56. TextLabel.Text = "Blox Fruits TP Chest Script"
  57. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  58. TextLabel.TextSize = 19.000
  59.  
  60. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(30, 30, 30)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(30, 30, 30))}
  61. UIGradient.Parent = Gradient
  62.  
  63. UICorner.CornerRadius = UDim.new(0, 4)
  64. UICorner.Parent = Gradient
  65.  
  66. UncommonChestButton.Name = "UncommonChestButton"
  67. UncommonChestButton.Parent = Gradient
  68. UncommonChestButton.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  69. UncommonChestButton.BorderSizePixel = 0
  70. UncommonChestButton.Position = UDim2.new(0.063415885, 0, 0.371442765, 0)
  71. UncommonChestButton.Size = UDim2.new(0, 180, 0, 45)
  72. UncommonChestButton.ZIndex = 2
  73. UncommonChestButton.Font = Enum.Font.GothamSemibold
  74. UncommonChestButton.Text = ""
  75. UncommonChestButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. UncommonChestButton.TextScaled = true
  77. UncommonChestButton.TextSize = 14.000
  78. UncommonChestButton.TextWrapped = true
  79. UncommonChestButton.MouseButton1Click:Connect(function()
  80.  
  81.     for i,v in pairs(game:GetDescendants()) do
  82.         if v.Name == "TouchInterest"  and v.Parent.Name == "Chest2" then
  83.             Player.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  84.             wait(0.9)
  85.         end
  86.     end
  87.  
  88.  
  89. end)
  90.  
  91. Shadow.Name = "Shadow"
  92. Shadow.Parent = UncommonChestButton
  93. Shadow.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
  94. Shadow.BorderSizePixel = 0
  95. Shadow.Size = UDim2.new(1, 0, 1, 4)
  96.  
  97. TextLabel_2.Parent = UncommonChestButton
  98. TextLabel_2.AnchorPoint = Vector2.new(0.5, 0.5)
  99. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  100. TextLabel_2.BackgroundTransparency = 1.000
  101. TextLabel_2.BorderColor3 = Color3.fromRGB(27, 42, 53)
  102. TextLabel_2.BorderSizePixel = 0
  103. TextLabel_2.Position = UDim2.new(0.5, 0, 0.5, 0)
  104. TextLabel_2.Size = UDim2.new(1, -20, 1, -20)
  105. TextLabel_2.ZIndex = 2
  106. TextLabel_2.Font = Enum.Font.GothamSemibold
  107. TextLabel_2.Text = "Uncommon Chest"
  108. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  109. TextLabel_2.TextScaled = true
  110. TextLabel_2.TextSize = 14.000
  111. TextLabel_2.TextWrapped = true
  112.  
  113. RareChestButton.Name = "RareChestButton"
  114. RareChestButton.Parent = Gradient
  115. RareChestButton.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  116. RareChestButton.BorderSizePixel = 0
  117. RareChestButton.Position = UDim2.new(0.063415885, 0, 0.579500675, 0)
  118. RareChestButton.Size = UDim2.new(0, 180, 0, 45)
  119. RareChestButton.ZIndex = 2
  120. RareChestButton.Font = Enum.Font.GothamSemibold
  121. RareChestButton.Text = ""
  122. RareChestButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  123. RareChestButton.TextScaled = true
  124. RareChestButton.TextSize = 14.000
  125. RareChestButton.TextWrapped = true
  126. RareChestButton.MouseButton1Click:Connect(function()
  127.  
  128.     for i,v in pairs(game:GetDescendants()) do
  129.         if v.Name == "TouchInterest"  and v.Parent.Name == "Chest3" then
  130.             Player.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  131.             wait(0.9)
  132.         end
  133.     end
  134.  
  135.  
  136. end)
  137.    
  138. Shadow_2.Name = "Shadow"
  139. Shadow_2.Parent = RareChestButton
  140. Shadow_2.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
  141. Shadow_2.BorderSizePixel = 0
  142. Shadow_2.Size = UDim2.new(1, 0, 1, 4)
  143.  
  144. TextLabel_3.Parent = RareChestButton
  145. TextLabel_3.AnchorPoint = Vector2.new(0.5, 0.5)
  146. TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  147. TextLabel_3.BackgroundTransparency = 1.000
  148. TextLabel_3.BorderColor3 = Color3.fromRGB(27, 42, 53)
  149. TextLabel_3.BorderSizePixel = 0
  150. TextLabel_3.Position = UDim2.new(0.5, 0, 0.5, 0)
  151. TextLabel_3.Size = UDim2.new(1, -20, 1, -20)
  152. TextLabel_3.ZIndex = 2
  153. TextLabel_3.Font = Enum.Font.GothamSemibold
  154. TextLabel_3.Text = "Rare Chest"
  155. TextLabel_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  156. TextLabel_3.TextScaled = true
  157. TextLabel_3.TextSize = 14.000
  158. TextLabel_3.TextWrapped = true
  159.  
  160. CommonChestButton.Name = "CommonChestButton"
  161. CommonChestButton.Parent = Gradient
  162. CommonChestButton.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  163. CommonChestButton.BorderSizePixel = 0
  164. CommonChestButton.Position = UDim2.new(0.0634158552, 0, 0.160377353, 0)
  165. CommonChestButton.Size = UDim2.new(0, 180, 0, 45)
  166. CommonChestButton.ZIndex = 2
  167. CommonChestButton.Font = Enum.Font.GothamSemibold
  168. CommonChestButton.Text = ""
  169. CommonChestButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  170. CommonChestButton.TextScaled = true
  171. CommonChestButton.TextSize = 14.000
  172. CommonChestButton.TextWrapped = true
  173.     CommonChestButton.MouseButton1Click:Connect(function()
  174.  
  175.         for i,v in pairs(game:GetDescendants()) do
  176.             if v.Name == "TouchInterest"  and v.Parent.Name == "Chest1" then
  177.                 Player.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  178.                 wait(0.9)
  179.             end
  180.         end
  181.  
  182.     end)
  183.  
  184. Shadow_3.Name = "Shadow"
  185. Shadow_3.Parent = CommonChestButton
  186. Shadow_3.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
  187. Shadow_3.BorderSizePixel = 0
  188. Shadow_3.Size = UDim2.new(1, 0, 1, 4)
  189.  
  190. TextLabel_4.Parent = CommonChestButton
  191. TextLabel_4.AnchorPoint = Vector2.new(0.5, 0.5)
  192. TextLabel_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  193. TextLabel_4.BackgroundTransparency = 1.000
  194. TextLabel_4.BorderColor3 = Color3.fromRGB(27, 42, 53)
  195. TextLabel_4.BorderSizePixel = 0
  196. TextLabel_4.Position = UDim2.new(0.5, 0, 0.5, 0)
  197. TextLabel_4.Size = UDim2.new(1, -20, 1, -20)
  198. TextLabel_4.ZIndex = 2
  199. TextLabel_4.Font = Enum.Font.GothamSemibold
  200. TextLabel_4.Text = "Common Chest"
  201. TextLabel_4.TextColor3 = Color3.fromRGB(255, 255, 255)
  202. TextLabel_4.TextScaled = true
  203. TextLabel_4.TextSize = 14.000
  204. TextLabel_4.TextWrapped = true
  205.  
  206. AntiAFKButton.Name = "AntiAFKButton"
  207. AntiAFKButton.Parent = Gradient
  208. AntiAFKButton.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  209. AntiAFKButton.BorderSizePixel = 0
  210. AntiAFKButton.Position = UDim2.new(0.0634158552, 0, 0.791308403, 0)
  211. AntiAFKButton.Size = UDim2.new(0, 180, 0, 45)
  212. AntiAFKButton.ZIndex = 2
  213. AntiAFKButton.Font = Enum.Font.GothamSemibold
  214. AntiAFKButton.Text = ""
  215. AntiAFKButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  216. AntiAFKButton.TextScaled = true
  217. AntiAFKButton.TextSize = 14.000
  218. AntiAFKButton.TextWrapped = true
  219.     AntiAFKButton.MouseButton1Click:Connect(function()
  220.         local VirtualUser = game:service'VirtualUser'
  221.         game:service'Players'.LocalPlayer.Idled:connect(function()
  222.             VirtualUser:CaptureController()
  223.             VirtualUser:ClickButton2(Vector2.new())
  224.         end)
  225.     end)
  226.    
  227. Shadow_4.Name = "Shadow"
  228. Shadow_4.Parent = AntiAFKButton
  229. Shadow_4.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
  230. Shadow_4.BorderSizePixel = 0
  231. Shadow_4.Size = UDim2.new(1, 0, 1, 4)
  232.  
  233. TextLabel_5.Parent = AntiAFKButton
  234. TextLabel_5.AnchorPoint = Vector2.new(0.5, 0.5)
  235. TextLabel_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  236. TextLabel_5.BackgroundTransparency = 1.000
  237. TextLabel_5.BorderColor3 = Color3.fromRGB(27, 42, 53)
  238. TextLabel_5.BorderSizePixel = 0
  239. TextLabel_5.Position = UDim2.new(0.5, 0, 0.5, 0)
  240. TextLabel_5.Size = UDim2.new(1, -20, 1, -20)
  241. TextLabel_5.ZIndex = 2
  242. TextLabel_5.Font = Enum.Font.GothamSemibold
  243. TextLabel_5.Text = "Anti AFK"
  244. TextLabel_5.TextColor3 = Color3.fromRGB(255, 255, 255)
  245. TextLabel_5.TextScaled = true
  246. TextLabel_5.TextSize = 14.000
  247. TextLabel_5.TextWrapped = true
Add Comment
Please, Sign In to add comment