arfiakbar123

ASW

Nov 2nd, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. -- ArfiAkbar
  2. -- Version: V1
  3. -- Instances:
  4. local Main = Instance.new("ScreenGui")
  5. local MainGui = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextLabel_2 = Instance.new("TextLabel")
  8. local TextButton = Instance.new("TextButton")
  9. local TextButton_2 = Instance.new("TextButton")
  10. local TextButton_3 = Instance.new("TextButton")
  11. local TextLabel_3 = Instance.new("TextLabel")
  12. --Properties:
  13. Main.Name = "Main"
  14. Main.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15.  
  16. MainGui.Name = "MainGui"
  17. MainGui.Parent = Main
  18. MainGui.Active = true
  19. MainGui.BackgroundColor3 = Color3.new(0, 0, 0)
  20. MainGui.BackgroundTransparency = 0.40000000596046
  21. MainGui.BorderColor3 = Color3.new(0, 0, 0)
  22. MainGui.BorderSizePixel = 3
  23. MainGui.Draggable = true
  24. MainGui.Position = UDim2.new(0, 143, 0, 286)
  25. MainGui.Size = UDim2.new(0, 317, 0, 263)
  26.  
  27. TextLabel.Parent = MainGui
  28. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  29. TextLabel.Position = UDim2.new(-0.000981087214, 0, -0.220062494, 0)
  30. TextLabel.Size = UDim2.new(0, 317, 0, 50)
  31. TextLabel.Font = Enum.Font.SourceSans
  32. TextLabel.Text = "Vehicle Simulator"
  33. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  34. TextLabel.TextSize = 14
  35.  
  36. TextLabel_2.Parent = MainGui
  37. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  38. TextLabel_2.Position = UDim2.new(-0.00413566129, 0, 0.920621932, 0)
  39. TextLabel_2.Size = UDim2.new(0, 67, 0, 20)
  40. TextLabel_2.Font = Enum.Font.SourceSans
  41. TextLabel_2.Text = "By:ArfiAkbar"
  42. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  43. TextLabel_2.TextSize = 14
  44.  
  45. TextButton.Parent = MainGui
  46. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  47. TextButton.Position = UDim2.new(0.181984216, 0, 0.402699172, 0)
  48. TextButton.Size = UDim2.new(0, 200, 0, 50)
  49. TextButton.Font = Enum.Font.SourceSans
  50. TextButton.Text = "Speed"
  51. TextButton.TextColor3 = Color3.new(0, 0, 0)
  52. TextButton.TextSize = 14
  53. TextButton.MouseButton1Down:connect(function()
  54. veh = nil
  55. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  56. if v:IsA("Model") then
  57. if v.owner.Value == game.Players.LocalPlayer.Name then
  58. veh = v
  59. end
  60. end
  61. end
  62.  
  63. if veh then
  64. han = veh.Handling
  65. han.MaxSpeed.Value = 1000
  66. han.Torque.Value = 30000
  67. han.SteeringRadiusConstant.Value = 3000
  68. han.FrictionRoad.Value = 200
  69. han.Gears.Value = 7
  70. han.Nitro.NitroSpeed.Value = 500
  71. han.Nitro.NitroForce.Value = 8000
  72. else
  73. print("Unable to find your vehicle!")
  74. end
  75. end)
  76.  
  77. TextButton_2.Parent = MainGui
  78. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  79. TextButton_2.Position = UDim2.new(-0.00200241804, 0, 0.637302041, 0)
  80. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  81. TextButton_2.Font = Enum.Font.SourceSans
  82. TextButton_2.Text = "Perks"
  83. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  84. TextButton_2.TextSize = 14
  85. TextButton_2.MouseButton1Down:connect(function()
  86. game:GetService("Players").LocalPlayer.UserId = 1099580
  87. end)
  88.  
  89. TextButton_3.Parent = MainGui
  90. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  91. TextButton_3.Position = UDim2.new(0.36597085, 0, 0.169886813, 0)
  92. TextButton_3.Size = UDim2.new(0, 200, 0, 50)
  93. TextButton_3.Font = Enum.Font.SourceSans
  94. TextButton_3.Text = "Create Tp"
  95. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  96. TextButton_3.TextSize = 14
  97. TextButton_3.MouseButton1Down:connect(function()
  98. print("Crate Script created by ArfiAkbar")
  99.  
  100. local plr = game.Players.LocalPlayer
  101.  
  102. hum = plr.Character.HumanoidRootPart
  103. local descendants = game.Workspace:GetDescendants()
  104.  
  105.  
  106. for index, descendant in pairs(descendants) do
  107. if descendant:IsA("Model") and descendant.DataCost == 52 then
  108. print(descendant)
  109. if descendant.PrimaryPart:IsA("MeshPart") then
  110. print(descendant.Parent.Parent.Name)
  111. descendant.Name = "Lukki02RCrateScript"
  112. end
  113. end
  114. end
  115.  
  116. wait(0.5)
  117.  
  118. hum.CFrame = game.Workspace.Lukki02RCrateScript.PrimaryPart.CFrame + Vector3.new(math.random(10,15), math.random(10,15), math.random(10,15))
  119. end)
  120.  
  121. TextLabel_3.Parent = MainGui
  122. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  123. TextLabel_3.Position = UDim2.new(0.784507871, 0, -0.220062494, 0)
  124. TextLabel_3.Size = UDim2.new(0, 67, 0, 50)
  125. TextLabel_3.Font = Enum.Font.SourceSans
  126. TextLabel_3.Text = "V1"
  127. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  128. TextLabel_3.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment