Advertisement
Guest User

VEHICLE SIMULATOR GUI

a guest
Nov 8th, 2019
13,632
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local vehgui = Instance.new("ScreenGui")
  5. local vhacks = Instance.new("Frame")
  6. local sacar = Instance.new("TextButton")
  7. local ljump = Instance.new("TextButton")
  8. local hjump = Instance.new("TextButton")
  9. local perksal = Instance.new("TextButton")
  10. local vehopcl = Instance.new("Frame")
  11. local opecl = Instance.new("TextButton")
  12. --Properties:
  13. vehgui.Name = "vehgui"
  14. vehgui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. vehgui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. vhacks.Name = "vhacks"
  18. vhacks.Parent = vehgui
  19. vhacks.BackgroundColor3 = Color3.new(1, 1, 1)
  20. vhacks.Position = UDim2.new(0.394279867, 0, 0.348367035, 0)
  21. vhacks.Size = UDim2.new(0, 207, 0, 195)
  22.  
  23. sacar.Name = "sacar"
  24. sacar.Parent = vhacks
  25. sacar.BackgroundColor3 = Color3.new(1, 1, 1)
  26. sacar.Size = UDim2.new(0, 207, 0, 50)
  27. sacar.Font = Enum.Font.SourceSans
  28. sacar.Text = "SuperCar"
  29. sacar.TextColor3 = Color3.new(0, 0, 0)
  30. sacar.TextSize = 14
  31.  
  32. ljump.Name = "ljump"
  33. ljump.Parent = vhacks
  34. ljump.BackgroundColor3 = Color3.new(1, 1, 1)
  35. ljump.Position = UDim2.new(0, 0, 0.743589818, 0)
  36. ljump.Size = UDim2.new(0, 207, 0, 50)
  37. ljump.Font = Enum.Font.SourceSans
  38. ljump.Text = "Normal JumpHeight"
  39. ljump.TextColor3 = Color3.new(0, 0, 0)
  40. ljump.TextSize = 14
  41.  
  42. hjump.Name = "hjump"
  43. hjump.Parent = vhacks
  44. hjump.BackgroundColor3 = Color3.new(1, 1, 1)
  45. hjump.Position = UDim2.new(0, 0, 0.512820542, 0)
  46. hjump.Size = UDim2.new(0, 207, 0, 50)
  47. hjump.Font = Enum.Font.SourceSans
  48. hjump.Text = "High JumpHeight"
  49. hjump.TextColor3 = Color3.new(0, 0, 0)
  50. hjump.TextSize = 14
  51.  
  52. perksal.Name = "perksal"
  53. perksal.Parent = vhacks
  54. perksal.BackgroundColor3 = Color3.new(1, 1, 1)
  55. perksal.Position = UDim2.new(0, 0, 0.256410271, 0)
  56. perksal.Size = UDim2.new(0, 207, 0, 50)
  57. perksal.Font = Enum.Font.SourceSans
  58. perksal.Text = "All Perks"
  59. perksal.TextColor3 = Color3.new(0, 0, 0)
  60. perksal.TextSize = 14
  61.  
  62. vehopcl.Name = "vehopcl"
  63. vehopcl.Parent = vehgui
  64. vehopcl.BackgroundColor3 = Color3.new(1, 1, 1)
  65. vehopcl.BackgroundTransparency = 1
  66. vehopcl.Position = UDim2.new(0, 0, 0.309486806, 0)
  67. vehopcl.Size = UDim2.new(0, 100, 0, 100)
  68.  
  69. opecl.Name = "opecl"
  70. opecl.Parent = vehopcl
  71. opecl.BackgroundColor3 = Color3.new(1, 1, 1)
  72. opecl.Position = UDim2.new(0, 0, 0.509999871, 0)
  73. opecl.Size = UDim2.new(0, 61, 0, 18)
  74. opecl.Modal = true
  75. opecl.Font = Enum.Font.SourceSans
  76. opecl.Text = "Open/Close"
  77. opecl.TextColor3 = Color3.new(0, 0, 0)
  78. opecl.TextSize = 14
  79. -- Scripts:
  80. function findCar()
  81. local vehicle = workspace.Vehicles:getChildren()
  82. for i=1,#vehicle do
  83. if vehicle[i]:findFirstChild("owner") then
  84. if vehicle[i].owner.Value == game.Players.LocalPlayer.Name then
  85. myCar = vehicle[i]
  86. end
  87. end
  88. end
  89. end
  90. function SCRIPT_RXIQ83_FAKESCRIPT() -- sacar.LocalScript
  91. local script = Instance.new('LocalScript')
  92. script.Parent = sacar
  93. local sac = script.Parent
  94. sac.MouseButton1Click:Connect(function()
  95. findCar()
  96. myCar.Handling.MaxSpeed.Value = 10000
  97. myCar.Handling.Torque.Value = 40000
  98. myCar.Handling.SteeringRadiusConstant.Value = 15000
  99. myCar.Handling.FrictionRoad.Value = 250
  100. myCar.Handling.Nitro.NitroSpeed.Value = 500
  101. myCar.Handling.Nitro.NitroForce.Value = 5000
  102. myCar.Handling.TurboJump.TurboJumpHeight.Value = 38
  103. end)
  104.  
  105.  
  106. end
  107. coroutine.resume(coroutine.create(SCRIPT_RXIQ83_FAKESCRIPT))
  108. function SCRIPT_FZBV90_FAKESCRIPT() -- ljump.LocalScript
  109. local script = Instance.new('LocalScript')
  110. script.Parent = ljump
  111. local ljp = script.Parent
  112. ljp.MouseButton1Click:Connect(function()
  113. findCar()
  114. myCar.Handling.TurboJump.TurboJumpHeight.Value = 27
  115. end)
  116.  
  117. end
  118. coroutine.resume(coroutine.create(SCRIPT_FZBV90_FAKESCRIPT))
  119. function SCRIPT_VRJX89_FAKESCRIPT() -- hjump.LocalScript
  120. local script = Instance.new('LocalScript')
  121. script.Parent = hjump
  122. local hjp = script.Parent
  123. hjp.MouseButton1Click:Connect(function()
  124. findCar()
  125. myCar.Handling.TurboJump.TurboJumpHeight.Value = 69
  126. end)
  127.  
  128.  
  129. end
  130. coroutine.resume(coroutine.create(SCRIPT_VRJX89_FAKESCRIPT))
  131. function SCRIPT_FBOG86_FAKESCRIPT() -- perksal.LocalScript
  132. local script = Instance.new('LocalScript')
  133. script.Parent = perksal
  134. local peksalr = script.Parent
  135. peksalr.MouseButton1Click:Connect(function()
  136. game:GetService("Players").LocalPlayer.UserId = 1099580
  137. end)
  138.  
  139.  
  140. end
  141. coroutine.resume(coroutine.create(SCRIPT_FBOG86_FAKESCRIPT))
  142. function SCRIPT_EWHA67_FAKESCRIPT() -- opecl.LocalScript
  143. local script = Instance.new('LocalScript')
  144. script.Parent = opecl
  145. local mainnguii = script.Parent.Parent.Parent.vhacks
  146. local opacals = script.Parent
  147. opacals.MouseButton1Click:Connect(function()
  148. if mainnguii.Visible == true then
  149. mainnguii.Visible = false
  150. else
  151. mainnguii.Visible = true
  152. end
  153. end)
  154.  
  155. end
  156. coroutine.resume(coroutine.create(SCRIPT_EWHA67_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement