Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ArfiAkbar
- -- Version: V1
- -- Instances:
- local Main = Instance.new("ScreenGui")
- local MainGui = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- local TextButton_2 = Instance.new("TextButton")
- local TextButton_3 = Instance.new("TextButton")
- local TextLabel_3 = Instance.new("TextLabel")
- --Properties:
- Main.Name = "Main"
- Main.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- MainGui.Name = "MainGui"
- MainGui.Parent = Main
- MainGui.Active = true
- MainGui.BackgroundColor3 = Color3.new(0, 0, 0)
- MainGui.BackgroundTransparency = 0.40000000596046
- MainGui.BorderColor3 = Color3.new(0, 0, 0)
- MainGui.BorderSizePixel = 3
- MainGui.Draggable = true
- MainGui.Position = UDim2.new(0, 143, 0, 286)
- MainGui.Size = UDim2.new(0, 317, 0, 263)
- TextLabel.Parent = MainGui
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.Position = UDim2.new(-0.000981087214, 0, -0.220062494, 0)
- TextLabel.Size = UDim2.new(0, 317, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Vehicle Simulator"
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextSize = 14
- TextLabel_2.Parent = MainGui
- TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_2.Position = UDim2.new(-0.00413566129, 0, 0.920621932, 0)
- TextLabel_2.Size = UDim2.new(0, 67, 0, 20)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = "By:ArfiAkbar"
- TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
- TextLabel_2.TextSize = 14
- TextButton.Parent = MainGui
- TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
- TextButton.Position = UDim2.new(0.181984216, 0, 0.402699172, 0)
- TextButton.Size = UDim2.new(0, 200, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Speed"
- TextButton.TextColor3 = Color3.new(0, 0, 0)
- TextButton.TextSize = 14
- TextButton.MouseButton1Down:connect(function()
- veh = nil
- for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
- if v:IsA("Model") then
- if v.owner.Value == game.Players.LocalPlayer.Name then
- veh = v
- end
- end
- end
- if veh then
- han = veh.Handling
- han.MaxSpeed.Value = 1000
- han.Torque.Value = 30000
- han.SteeringRadiusConstant.Value = 3000
- han.FrictionRoad.Value = 200
- han.Gears.Value = 7
- han.Nitro.NitroSpeed.Value = 500
- han.Nitro.NitroForce.Value = 8000
- else
- print("Unable to find your vehicle!")
- end
- end)
- TextButton_2.Parent = MainGui
- TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
- TextButton_2.Position = UDim2.new(-0.00200241804, 0, 0.637302041, 0)
- TextButton_2.Size = UDim2.new(0, 200, 0, 50)
- TextButton_2.Font = Enum.Font.SourceSans
- TextButton_2.Text = "Perks"
- TextButton_2.TextColor3 = Color3.new(0, 0, 0)
- TextButton_2.TextSize = 14
- TextButton_2.MouseButton1Down:connect(function()
- game:GetService("Players").LocalPlayer.UserId = 1099580
- end)
- TextButton_3.Parent = MainGui
- TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
- TextButton_3.Position = UDim2.new(0.36597085, 0, 0.169886813, 0)
- TextButton_3.Size = UDim2.new(0, 200, 0, 50)
- TextButton_3.Font = Enum.Font.SourceSans
- TextButton_3.Text = "Create Tp"
- TextButton_3.TextColor3 = Color3.new(0, 0, 0)
- TextButton_3.TextSize = 14
- TextButton_3.MouseButton1Down:connect(function()
- print("Crate Script created by ArfiAkbar")
- local plr = game.Players.LocalPlayer
- hum = plr.Character.HumanoidRootPart
- local descendants = game.Workspace:GetDescendants()
- for index, descendant in pairs(descendants) do
- if descendant:IsA("Model") and descendant.DataCost == 52 then
- print(descendant)
- if descendant.PrimaryPart:IsA("MeshPart") then
- print(descendant.Parent.Parent.Name)
- descendant.Name = "Lukki02RCrateScript"
- end
- end
- end
- wait(0.5)
- hum.CFrame = game.Workspace.Lukki02RCrateScript.PrimaryPart.CFrame + Vector3.new(math.random(10,15), math.random(10,15), math.random(10,15))
- end)
- TextLabel_3.Parent = MainGui
- TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_3.Position = UDim2.new(0.784507871, 0, -0.220062494, 0)
- TextLabel_3.Size = UDim2.new(0, 67, 0, 50)
- TextLabel_3.Font = Enum.Font.SourceSans
- TextLabel_3.Text = "V1"
- TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
- TextLabel_3.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment