I used to play a bit of racing games back when I was younger on roblox, and I decided to come back to them. I noticed not many using the default roblox car kit have any form of Slipstream (drafting) which is used to speed up the car. I had the idea of having it when the car touches a part called “Slipstream” it would change the cars MaxSpeed up by 25 or so. This is currently what I have attempted to use.
Uhm, there isn’t a model BUT there is the script. This script is here:
(Drafting Speed)
local maxdraft = script.Parent.MaxSpeed + 25
function onTouched(hit)
if hit.Name == “Draft” and script.Parent.Parent.VehicleSeat.MaxSpeed <= maxdraft then
script.Parent.Parent.VehicleSeat.MaxSpeed = script.Parent.Parent.VehicleSeat.MaxSpeed + 5
wait(1.25)
script.Parent.Parent.VehicleSeat.MaxSpeed = script.Parent.Parent.VehicleSeat.MaxSpeed - 5
end
end
script.Parent.Touched:connect(onTouched)
– Made by GeorgeTheDev
(Script)
m = Instance.new(“Hint”, game.Workspace)
while true do
m.Text = “The 2018 NASCARs were created by GeorgeTheDev”