CAR SOUND Roblox ID. Here are Roblox music code for CAR SOUND Roblox ID. You can easily copy the code or add it to your favorite list. Code: - Copy it! Favorites: 16 - I like it too! If you are happy with this, please share it to your friends. You can use the. Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Jun 17th, 2018
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
- -- This works in FE, tested via Roblox Studio's 'Test' tab.
- local speed =92
- local plr = game:GetService('Players').LocalPlayer
- local plrchar = plr.Character or plr.CharacterAdded:Wait()
- local tool = Instance.new('Tool', plr:WaitForChild('Backpack'))
- local handle = Instance.new('Part', tool)
- handle.CanCollide =true
- local mesh = Instance.new('SpecialMesh', handle)
- mesh.MeshId ='http://www.roblox.com/asset/?id=264666411'
- mesh.TextureId ='http://www.roblox.com/asset/?id=264326115'
- local gui = Instance.new('ScreenGui', plr:WaitForChild('PlayerGui'))
- local frame = Instance.new('Frame', gui)
- frame.Position = UDim2.new(0,0,.7,0)
- frame.BackgroundColor3 = Color3.fromRGB(255,255,255)
- local SetSpeed_label = Instance.new('TextLabel', frame)
- SetSpeed_label.BorderSizePixel =0
- SetSpeed_label.Font = Enum.Font.Arcade
- SetSpeed_label.TextSize =30
- SetSpeed_label.BackgroundColor3 = Color3.fromRGB(255,255,255)
- SetSpeed.BackgroundTransparency =1
- SetSpeed.Position = UDim2.new(0,0,.25,0)
- SetSpeed.Font = Enum.Font.SourceSansLight
- SetSpeed.PlaceholderColor3 = Color3.fromRGB(48,178,96)
- SetSpeed.Text ='
- local prevSpeed = plrchar:WaitForChild('Humanoid').WalkSpeed
- local prevJumpPower = plrchar:WaitForChild('Humanoid').JumpPower
- tool.Equipped:Connect(function()
- prevSpeed = plrchar:WaitForChild('Humanoid').WalkSpeed
- prevJumpPower = plrchar:WaitForChild('Humanoid').JumpPower
- plrchar:WaitForChild('Humanoid').WalkSpeed = speed
- equipped =true
- plrchar:WaitForChild('Humanoid').WalkSpeed = prevSpeed
- plrchar:WaitForChild('Humanoid').JumpPower = prevJumpPower
- end)
- function SignalError()
- SetSpeed_label.TextColor3 = Color3.fromRGB(232,23,23)
- SetSpeed_label.TextColor3 = Color3.new(0,0,0)
- SetSpeed_label.TextColor3 = Color3.fromRGB(51,204,40)
- SetSpeed_label.TextColor3 = Color3.new(0,0,0)
- if enter truethen
- speed =tonumber(SetSpeed.Text)
- plrchar:WaitForChild('Humanoid').WalkSpeed = speed
- SignalSuccess()
- else
- SetSpeed.Text ='
- else
- end
- plrchar:WaitForChild('Humanoid').Died:Connect(function()
- script:Destroy()
RAW Paste Data
Feb 18th, 2019
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
- Fully automatic money/miles farm
- Add auto respawn vehicle
- local waitTime = 3 --This will be the time it takes (seconds) until your car resets. See line 37
- local hint = Instance.new('Hint', Workspace) hint.Text = 'Vehicle Simulator Autofarm loading...'
- local go = true
- function findVehicle() --Finds your vehicle
- while not found do --Loops until your vehicle has been found
- local vehicles = Workspace.Vehicles:getChildren()
- if vehicles[i]:findFirstChild'owner' then
- if vehicles[i].owner.Value game:GetService'Players'.LocalPlayer.Name then -- Found your vehicle
- found = true --Setting found to true so loop breaks
- vehicle = vehicles[i] -- Declares vehicle variable to your vehicle
- vehStats = vehicle.Handling -- Declares vehStats variable to vehicle stats folder
- vehStats.Torque.Value = 30000
- vehStats.SteeringRadiusConstant.Value = 120000000
- elseif vehicles[i + 1] nil and not found then
- hint.Text = 'Please spawn and enter your vehicle!' --Your vehicle does not exist in the Workspace
- end
- wait(1) --Waiting before checking again so we don't crash
- wait(2) --We've found the car. Waiting so the car can be properly placed on the highway
- vehicle.PrimaryPart = vehicle.Chassis.VehicleSeat
- function farm() --This is where the magic happens :)
- hint.Text = 'Finished loading! Autofarm initialized.'
- while wait(waitTime) do --Waits x seconds before resetting car
- vehicle:SetPrimaryPartCFrame(CFrame.new(-2470,60,777)) --Teleports vehicle to highway
- game:GetService'VirtualUser':SetKeyUp('w') --Resets W key
- game:GetService'VirtualUser':SetKeyDown('w') --Presses W key to go forward
- end
- while go do
- if not pcall(farm()) then --Calls farm function & checks for errors
- found = false --If it errors, it sets found to false and continues looking for your vehicle.
- end
RAW Paste Data