arfiakbar123

Pro Script V.123

May 6th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.80 KB | None | 0 0
  1. local Gui = Instance.new("ScreenGui")
  2. local Bar = Instance.new("Frame")
  3. local Main = Instance.new("Frame")
  4. local Button1 = Instance.new("TextButton")
  5. local Button2 = Instance.new("TextButton")
  6. local Button3 = Instance.new("TextButton")
  7. local Button4 = Instance.new("TextButton")
  8. local Button5 = Instance.new("TextButton")
  9. local Button6 = Instance.new("TextButton")
  10. local Button7 = Instance.new("TextButton")
  11. local Button8 = Instance.new("TextButton")
  12. local Button9 = Instance.new("TextButton")
  13. local Button10 = Instance.new("TextButton")
  14. local Txt = Instance.new("TextLabel")
  15. local farmDebounce = false
  16. local speedDebounce = false
  17. local jumpDebounce = false
  18.  
  19. function check()
  20. for _,v in pairs(workspace.Vehicles:GetChildren()) do
  21. if v:IsA("Model") and v:FindFirstChild("owner").Value == game.Players.LocalPlayer.Name then
  22. car = v
  23. end
  24. end
  25. if car ~= nil then
  26. return true
  27. else
  28. return false
  29. end
  30. end
  31.  
  32. Gui.Parent = game.CoreGui
  33.  
  34. Bar.Name = "Bar"
  35. Bar.Parent = Gui
  36. Bar.Active = true
  37. Bar.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  38. Bar.Draggable = true
  39. Bar.Position = UDim2.new(0.825, 0, 0.55, 0)
  40. Bar.Selectable = true
  41. Bar.Size = UDim2.new(0, 335, 0, 31)
  42.  
  43. Main.Name = "Main"
  44. Main.Parent = Bar
  45. Main.BackgroundColor3 = Color3.new(0.35, 0.35, 0.35)
  46. Main.BackgroundTransparency = 0.20000000298023
  47. Main.Position = UDim2.new(0, 0, 1, 0)
  48. Main.Size = UDim2.new(0, 335, 0, 260)
  49.  
  50. Button1.Name = "Button1"
  51. Button1.Parent = Main
  52. Button1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  53. Button1.Position = UDim2.new(0.035, 0, 0, 0)
  54. Button1.Size = UDim2.new(0, 150, 0, 50)
  55. Button1.Font = Enum.Font.SourceSans
  56. Button1.Text = "TpToCrate"
  57. Button1.TextColor3 = Color3.new(1, 1, 1)
  58. Button1.TextSize = 30
  59. Button1.MouseButton1Click:connect(function()
  60. for i,v in pairs(workspace:GetDescendants()) do
  61. if v.Name == "Crate" and v.Parent.Name == "Crate" then
  62. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(0,100,0)
  63. end
  64. end
  65. game.ReplicatedStorage.items.open_crate:InvokeServer("Standard")
  66. game.ReplicatedStorage.items.open_crate:InvokeServer("Specialized")
  67. game.ReplicatedStorage.items.open_crate:InvokeServer("Rare")
  68. end)
  69.  
  70. Button2.Name = "Button2"
  71. Button2.Parent = Main
  72. Button2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  73. Button2.Position = UDim2.new(0.515, 0, 0, 0)
  74. Button2.Size = UDim2.new(0, 150, 0, 50)
  75. Button2.Font = Enum.Font.SourceSans
  76. Button2.Text = "FastSpeed"
  77. Button2.TextColor3 = Color3.new(1, 1, 1)
  78. Button2.TextSize = 30
  79. Button2.MouseButton1Click:connect(function()
  80. if check() == true then
  81. car.Handling.MaxSpeed.Value = 1000
  82. car.Handling.Torque.Value = 20000
  83. end
  84. end)
  85.  
  86. Button3.Name = "TextButton3"
  87. Button3.Parent = Main
  88. Button3.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  89. Button3.Position = UDim2.new(0.035, 0, 0.20, 0)
  90. Button3.Size = UDim2.new(0, 150, 0, 50)
  91. Button3.Font = Enum.Font.SourceSans
  92. Button3.Text = "CarJumpX5"
  93. Button3.TextColor3 = Color3.new(1, 1, 1)
  94. Button3.TextSize = 30
  95. Button3.MouseButton1Click:connect(function()
  96. if check() == true and jumpDebounce == false then
  97. car.Handling.TurboJump.TurboJumpHeight.Value = 125
  98. jumpDebounce = true
  99. elseif check() == true and jumpDebounce == true then
  100. car.Handling.TurboJump.TurboJumpHeight.Value = 25
  101. jumpDebounce = false
  102. end
  103. end)
  104.  
  105. Button4.Name = "TextButton4"
  106. Button4.Parent = Main
  107. Button4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  108. Button4.Position = UDim2.new(0.515, 0, 0.20, 0)
  109. Button4.Size = UDim2.new(0, 150, 0, 50)
  110. Button4.Font = Enum.Font.SourceSans
  111. Button4.Text = "MoneyFarm"
  112. Button4.TextColor3 = Color3.new(1, 1, 1)
  113. Button4.TextSize = 30
  114. Button4.MouseButton1Click:connect(function()
  115. if check() == true and farmDebounce == false then
  116. car.Chassis.VehicleSeat.Anchored = true
  117. farmDebounce = true
  118. elseif check() == true and farmDebounce == true then
  119. car.Chassis.VehicleSeat.Anchored = false
  120. farmDebounce = false
  121. end
  122. end)
  123.  
  124. Button5.Name = "TextButton5"
  125. Button5.Parent = Main
  126. Button5.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  127. Button5.Position = UDim2.new(0.035, 0, 0.4, 0)
  128. Button5.Size = UDim2.new(0, 150, 0, 50)
  129. Button5.Font = Enum.Font.SourceSans
  130. Button5.Text = "WinAirport"
  131. Button5.TextColor3 = Color3.new(1, 1, 1)
  132. Button5.TextSize = 30
  133. Button5.MouseButton1Click:connect(function()
  134. if check() == true then
  135. car:SetPrimaryPartCFrame(workspace.race_checkpoints.airport_checkpoints["Checkpoint_1_Airport Quarter Mile"].CFrame)
  136. end
  137. end)
  138.  
  139. Button6.Name = "TextButton6"
  140. Button6.Parent = Main
  141. Button6.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  142. Button6.Position = UDim2.new(0.515, 0, 0.4, 0)
  143. Button6.Size = UDim2.new(0, 150, 0, 50)
  144. Button6.Font = Enum.Font.SourceSans
  145. Button6.Text = "WinQuartMile"
  146. Button6.TextColor3 = Color3.new(1, 1, 1)
  147. Button6.TextSize = 30
  148. Button6.MouseButton1Click:connect(function()
  149. if check() == true then
  150. car:SetPrimaryPartCFrame(workspace.race_checkpoints.quartermile_checkpoints["Checkpoint_1_Quarter Mile"].CFrame)
  151. end
  152. end)
  153.  
  154. Button7.Name = "TextButton7"
  155. Button7.Parent = Main
  156. Button7.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  157. Button7.Position = UDim2.new(0.035, 0, 0.60, 0)
  158. Button7.Size = UDim2.new(0, 150, 0, 50)
  159. Button7.Font = Enum.Font.SourceSans
  160. Button7.Text = "AutoShop"
  161. Button7.TextColor3 = Color3.new(1, 1, 1)
  162. Button7.TextSize = 30
  163. Button7.MouseButton1Click:connect(function()
  164. if check() == false then
  165. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-1903, 53.297, -1216))
  166. elseif check() == true then
  167. car:SetPrimaryPartCFrame(CFrame.new(Vector3.new(-1903, 53.297, -1216)))
  168. end
  169. end)
  170.  
  171.  
  172. Button8.Name = "TextButton8"
  173. Button8.Parent = Main
  174. Button8.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  175. Button8.Position = UDim2.new(0.515, 0, 0.60, 0)
  176. Button8.Size = UDim2.new(0, 150, 0, 50)
  177. Button8.Font = Enum.Font.SourceSans
  178. Button8.Text = "SuperCars"
  179. Button8.TextColor3 = Color3.new(1, 1, 1)
  180. Button8.TextSize = 30
  181. Button8.MouseButton1Click:connect(function()
  182. if check() == false then
  183. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-414, 60.1, -1191))
  184. elseif check() == true then
  185. car:SetPrimaryPartCFrame(CFrame.new(Vector3.new(-418.28, 50, -1144.09)))
  186. end
  187. end)
  188.  
  189. Button9.Name = "TextButton9"
  190. Button9.Parent = Main
  191. Button9.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  192. Button9.Position = UDim2.new(0.035, 0, 0.80, 0)
  193. Button9.Size = UDim2.new(0, 150, 0, 50)
  194. Button9.Font = Enum.Font.SourceSans
  195. Button9.Text = "Tesla"
  196. Button9.TextColor3 = Color3.new(1, 1, 1)
  197. Button9.TextSize = 30
  198. Button9.MouseButton1Click:connect(function()
  199. if check() == false then
  200. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-2746.6, 50, -476.8))
  201. elseif check() == true then
  202. car:SetPrimaryPartCFrame(CFrame.new(Vector3.new(-2760.3, 50, -475)))
  203. end
  204. end)
  205.  
  206. Button10.Name = "TextButton10"
  207. Button10.Parent = Main
  208. Button10.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  209. Button10.Position = UDim2.new(0.515, 0, 0.80, 0)
  210. Button10.Size = UDim2.new(0, 150, 0, 50)
  211. Button10.Font = Enum.Font.SourceSans
  212. Button10.Text = "SUPERSPEED"
  213. Button10.TextColor3 = Color3.new(1, 1, 1)
  214. Button10.TextSize = 30
  215. Button10.MouseButton1Click:connect(function()
  216. if check() == true and farmDebounce == false then
  217. car.Handling.MaxSpeed.Value = 1500
  218. car.Handling.Torque.Value = 50000
  219. farmDebounce = true
  220. elseif check() == true and farmDebounce == true then
  221. car.Handling.MaxSpeed.Value = 1000
  222. car.Handling.Torque.Value = 20000
  223. farmDebounce = false
  224. end
  225. end)
  226.  
  227.  
  228. Txt.Name = "Label"
  229. Txt.Parent = Bar
  230. Txt.BackgroundColor3 = Color3.new(1, 1, 1)
  231. Txt.BackgroundTransparency = 1
  232. Txt.BorderSizePixel = 0
  233. Txt.Position = UDim2.new(0.13, 0, 0, 0)
  234. Txt.Size = UDim2.new(0, 242, 0, 31)
  235. Txt.Font = Enum.Font.SourceSans
  236. Txt.Text = "VehicleSimulator"
  237. Txt.TextColor3 = Color3.new(1, 1, 1)
  238. Txt.TextScaled = true
  239. Txt.TextSize = 14
  240. Txt.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment