Advertisement
SomeRBXperson_

Vehicle Simulator GUI (SPEED CAR)

Nov 12th, 2019
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.73 KB | None | 0 0
  1. -- Version: 2.82
  2. -- Instances:
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextLabel_2 = Instance.new("TextLabel")
  7. local TextLabel_3 = Instance.new("TextLabel")
  8. local TextLabel_4 = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextLabel_5 = Instance.new("TextLabel")
  11. --Properties:
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(0.403922, 0.403922, 0.403922)
  16. Frame.BorderSizePixel = 0
  17. Frame.Position = UDim2.new(0.186503068, 3, 0.225328952, 1)
  18. Frame.Size = UDim2.new(0, 505, 0, 297)
  19. Frame.Style = Enum.FrameStyle.DropShadow
  20.  
  21. TextLabel.Parent = Frame
  22. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextLabel.BackgroundTransparency = 9
  24. TextLabel.BorderSizePixel = 0
  25. TextLabel.Position = UDim2.new(0.00556799769, 0, -0.00864991546, 0)
  26. TextLabel.Size = UDim2.new(0, 275, 0, 50)
  27. TextLabel.Font = Enum.Font.Fantasy
  28. TextLabel.Text = "Vehicle Simulator GUI"
  29. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  30. TextLabel.TextScaled = true
  31. TextLabel.TextSize = 14
  32. TextLabel.TextWrapped = true
  33.  
  34. TextLabel_2.Parent = Frame
  35. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  36. TextLabel_2.BorderColor3 = Color3.new(0.0352941, 0.968628, 0.113725)
  37. TextLabel_2.BorderSizePixel = 2
  38. TextLabel_2.Position = UDim2.new(-0.00975885615, 0, 0.16900681, 0)
  39. TextLabel_2.Size = UDim2.new(0, 497, 0, 9)
  40. TextLabel_2.Font = Enum.Font.SourceSans
  41. TextLabel_2.Text = " "
  42. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  43. TextLabel_2.TextSize = 14
  44.  
  45. TextLabel_3.Parent = Frame
  46. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  47. TextLabel_3.BackgroundTransparency = 9
  48. TextLabel_3.Position = UDim2.new(0.00556903519, 0, 0.927559435, 0)
  49. TextLabel_3.Size = UDim2.new(0, 142, 0, 16)
  50. TextLabel_3.Font = Enum.Font.SourceSans
  51. TextLabel_3.Text = "Made by MaiLeane on YouTube"
  52. TextLabel_3.TextColor3 = Color3.new(0.870588, 0.870588, 0.870588)
  53. TextLabel_3.TextSize = 14
  54.  
  55. TextLabel_4.Parent = Frame
  56. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  57. TextLabel_4.BackgroundTransparency = 9
  58. TextLabel_4.Position = UDim2.new(0.713757217, 0, 0.961229384, 0)
  59. TextLabel_4.Size = UDim2.new(0, 142, 0, 16)
  60. TextLabel_4.Font = Enum.Font.SourceSans
  61. TextLabel_4.Text = "https://discord.gg/VWTgtKG"
  62. TextLabel_4.TextColor3 = Color3.new(0.870588, 0.870588, 0.870588)
  63. TextLabel_4.TextSize = 14
  64.  
  65. TextButton.Parent = Frame
  66. TextButton.BackgroundColor3 = Color3.new(0.831373, 0.960784, 1)
  67. TextButton.BorderSizePixel = 0
  68. TextButton.Position = UDim2.new(0.0455383882, 0, 0.31456247, 0)
  69. TextButton.Size = UDim2.new(0, 163, 0, 67)
  70. TextButton.Font = Enum.Font.Fantasy
  71. TextButton.Text = "SUPER FAST SPEED"
  72. TextButton.TextColor3 = Color3.new(0, 0, 0)
  73. TextButton.TextSize = 14
  74. TextButton.MouseButton1Down:connect(function()
  75. --Vehicle Simulator AFK money / miles
  76. --Made by MaiLeane on YouTube
  77. --How to use
  78. --Load into the game then execute the script
  79. --Get in your car then type "/e racingmode" into chat
  80. --Then go as fast as you can,then once you're at a good speed
  81. --have this phrase copied "/e stop" and paste it into chat
  82. --scuffed but works enjoy
  83.  
  84. local plr = game.Players.LocalPlayer
  85. local inftoggle = false
  86. function getvehicle()
  87. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  88. if v:IsA("Model") then
  89. if v.owner.Value == plr.Name then
  90. return v
  91. end
  92. end
  93. end
  94. return nil
  95. end
  96. function hint(txt, t)
  97. if t then
  98. local h = Instance.new("Hint",plr.PlayerGui)
  99. h.Text = txt
  100. wait(t)
  101. h:remove()
  102. else
  103. local h = Instance.new("Hint",plr.PlayerGui)
  104. h.Text = txt
  105. wait(2)
  106. h:remove()
  107. end
  108. end
  109.  
  110. plr.Chatted:connect(function(msg)
  111. if msg:lower():sub(1,10) == "/e toggle:" then
  112. local ins = msg:lower():sub(11)
  113. local vehicle = getvehicle()
  114. if vehicle then
  115. if ins == "infnitro" then
  116. if inftoggle == true then
  117. inftoggle = false
  118. hint("(-)Disabled Infinite Nitro!(-)")
  119. else
  120. inftoggle = true
  121. hint("(+)Enabled Infinite Nitro!(+)")
  122. end
  123. end
  124. else
  125. hint("(-)You do not have a vehicle spawned!(-)")
  126. end
  127. elseif msg:lower():sub(1,14) == "/e nitrospeed:" then
  128. local num = msg:sub(15)
  129. local vehicle = getvehicle()
  130. if vehicle then
  131. vehicle.Handling.Nitro.NitroSpeed.Value = tonumber(num)
  132. else
  133. hint("(-)You do not have a vehicle spawned!(-)")
  134. end
  135. elseif msg:lower():sub(1,14) == "/e stop" then
  136. local num = msg:sub(1,15)
  137. local vehicle = getvehicle()
  138. if vehicle then
  139. vehicle.Chassis.VehicleSeat.Anchored = true
  140. else
  141. hint("(-)You do not have a vehicle spawned!(-)")
  142. end
  143. elseif msg:lower():sub(1,14) == "/e nitroforce:" then
  144. local num = msg:sub(1,15)
  145. local vehicle = getvehicle()
  146. if vehicle then
  147. vehicle.Handling.Nitro.NitroForce.Value = tonumber(num)
  148. else
  149. hint("(-)You do not have a vehicle spawned!(-)")
  150. end
  151. elseif msg:lower():sub(1,12) == "/e maxspeed:" then
  152. local num = msg:sub(13)
  153. local vehicle = getvehicle()
  154. if vehicle then
  155. vehicle.Handling.MaxSpeed.Value = tonumber(num)
  156. else
  157. hint("(-)You do not have a vehicle spawned!(-)")
  158. end
  159. elseif msg:lower():sub(1,10) == "/e torque:" then
  160. local num = msg:sub(11)
  161. local vehicle = getvehicle()
  162. if vehicle then
  163. vehicle.Handling.Torque.Value = tonumber(num)
  164. else
  165. hint("(-)You do not have a vehicle spawned!(-)")
  166. end
  167. elseif msg:lower():sub(1,12) == "/e friction:" then
  168. local num = msg:sub(13)
  169. local vehicle = getvehicle()
  170. if vehicle then
  171. vehicle.Handling.FrictionOffroad.Value = tonumber(num)
  172. vehicle.Handling.FrictionRoad.Value = tonumber(num)
  173. else
  174. hint("(-)You do not have a vehicle spawned!(-)")
  175. end
  176. elseif msg:lower():sub(1,13) == "/e racingmode" then
  177. local vehicle = getvehicle()
  178. if vehicle then
  179. han = vehicle.Handling
  180. han.MaxSpeed.Value = 10000
  181. han.Torque.Value = 30000
  182. han.SteeringRadiusConstant.Value = 12000
  183. han.FrictionOffroad.Value = 200
  184. han.FrictionRoad.Value = 200
  185. han.Nitro.NitroSpeed.Value = 300
  186. han.Nitro.NitroForce.Value = 8000
  187. han.TurboJump.TurboJumpHeight.Value = 300
  188. inftoggle = true
  189. else
  190. hint("(-)You do not have a vehicle spawned!(-)")
  191. end
  192. end
  193. end)
  194. wait(0.5)
  195. while inftoggle == true do
  196. wait(0.02)
  197. local vehicle = getvehicle()
  198. if vehicle then
  199. vehicle.Handling.Nitro.NitroAmount.Value = 250
  200. end
  201. end
  202. end)
  203.  
  204. TextLabel_5.Parent = Frame
  205. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  206. TextLabel_5.BackgroundTransparency = 9
  207. TextLabel_5.Position = UDim2.new(0.405428261, 0, 0.391449392, 0)
  208. TextLabel_5.Size = UDim2.new(0, 287, 0, 133)
  209. TextLabel_5.Font = Enum.Font.Fantasy
  210. TextLabel_5.Text = "After Clicking SUPER FAST SPEED, type in chat /e racingmode after you typed that your vehicle should be boosted on speed if it didn't work try driving around and type /e racingmode again"
  211. TextLabel_5.TextColor3 = Color3.new(0.87451, 0.87451, 0.87451)
  212. TextLabel_5.TextScaled = true
  213. TextLabel_5.TextSize = 14
  214. TextLabel_5.TextWrapped = true
  215. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement