How To Make A Car In Roblox

191,916
0
Published 2021-12-14
00:00 Intro
00:14 Building the car
06:34 Scripting the car
07:48 Testing the car

This video will show you how to make a car on Roblox.

The code for the car is available at: pastebin.com/jrd6gtz4

MORE TECH INSIDER VIDEOS:
How To Delete Your Netflix Account
   • How To Delete Your Netflix Account  
How To Turn Flashlight On And Off On iPhone
   • How To Turn Flashlight On And Off On ...  
How To Remove Passwords From Windows 10
   • How To Remove Passwords From Windows 10  

------------------------------------------------------

#Roblox #HowTo #TechInsider

Tech Insider tells you all you need to know about tech: gadgets, how-to's, gaming, science, digital culture, and more.

Visit us at: www.businessinsider.com/
TI on Facebook: www.facebook.com/techinsider
TI on Instagram: www.instagram.com/tech_insider/
TI on Twitter: twitter.com/techinsider
INSIDER on Snapchat: insder.co/2KJLtVo

How To Make A Car In Roblox

All Comments (21)
  • @fudgiyo7149
    --For the people who would rather copy and paste local seat = script.Parent.VehicleSeat local backLeft = script.Parent.BackLeft local backRight = script.Parent.BackRight local frontLeft = script.Parent.FrontLeft local frontRight = script.Parent.FrontRight local steerAngle = 30 local speed = 60 seat:GetPropertyChangedSignal("Steer"):Connect(function() frontLeft.PartB.SteeringConstraint.TargetAngle = steerAngle * seat.Steer frontRight.PartB.SteeringConstraint.TargetAngle = steerAngle * seat.Steer end) seat:GetPropertyChangedSignal("Throttle"):Connect(function() frontLeft.Wheel.WheelConstraint.AngularVelocity = speed * seat.Throttle frontRight.Wheel.WheelConstraint.AngularVelocity = speed * -seat.Throttle backLeft.Wheel.WheelConstraint.AngularVelocity = speed * seat.Throttle backRight.Wheel.WheelConstraint.AngularVelocity = speed * -seat.Throttle end)
  • So complicated now when all you had to do before was add a yellow axle
  • @drthunder5527
    Tech insider out here giving us the information we need for a successful life
  • @alackofskill
    this was a massive help! I have tried other tutorials before and they were either unclear or just didn't work when I tried to build the car multiple times. This video was clear and concise. I had some trouble with the steering function but I just messed up the attachments and I need to rewatch the video.
  • @robotblocks3232
    This tutorial was extremely useful. One problem I had was that my car would move straight, but won't turn. Turns out that for the constraints, I spelt them incorrectly. And guess what! The little mistake was that there was a space in between steering and constraint. I got rid of the space and the car worked just fine! LOL! Coding is very picky about grammar, so be careful about that!
  • @moonrock7592
    So they finally decided to make useful videos, nice.
  • @jakubpastika1363
    idk why every tutorial wont work i have all correct but i sit in vehicle seat and it not working holding w nothing holding s nothing holding d nothing holding a nothing idk what to doo
  • Guys make sure to name the Wheel parts "Wheel" or the motor to make your car move will not work with the script.
  • @func_george
    Thank u so much. I can finnaly update my car gasme cool job dude
  • @masteropian
    The car runs smoothly but slips a lot in corners and the front wheels wobble when reversing.
  • @zykdon
    ive been using studio for years and couldnt do this thanks tech
  • @mazzvr4884
    Ok, I have a question I'm trying to make a boom lift so that requires the weels to be able to drive with wad and a part that turns but with a different key like e and a
  • @-_J_-
    For some reason my Hinge isn't working, it wont attach to a block unless I delete the weld manually
  • @julianvanevera
    I tried this tutorial it doesn't work when I try to drive it instead of moving wheels left or right or forward or back it will move the parta and partb blocks instead does anyone know how to fix this
  • @ragingcheezball
    Great tutorial, definitely the best I've seen so far! I don't like how my car is sliding around all the time, so I added friction to it, but now the wheels just keep juggling around and the car turns sometimes when I don't turn it (clicking A or D). I haven't changed any of the code, just the CustomPhysicalProperties of the actual wheel parts. If anyone can help me then that would be greatly appreciated. Amazing video though! So easy to follow. 10/10 from me.
  • @frogybot
    How do I add a speed gui and stuff? and like remove the default speed thing?
  • @user-ts4ds6le2x
    local seat = script.Parent.VehicleSeat local backLeft = script.Parent.BackLeft local backRight = script.Parent.BackRight local frontLeft = script.Parent.FrontLeft local frontRight = script.Parent.FrontRight local steerAngle = 30 local speed = 60 seat:GetPropertyChangedSignal("Steer"):Connect(function() frontLeft.PartB.SteeringConstraint.TargetAngle = steerAngle * seat.Steer frontRight.PartB.SteeringConstraint.TargetAngle = steerAngle * seat.Steer end) seat:GetPropertyChangedSignal("Throttle"):Connect(function() frontLeft.Wheel.WheelConstraint.AngularVelocity = speed * seat.Throttle frontRight.Wheel.WheelConstraint.AngularVelocity = speed * -seat.Throttle backLeft.Wheel.WheelConstraint.AngularVelocity = speed * seat.Throttle backRight.Wheel.WheelConstraint.AngularVelocity = speed * -seat.Throttle end)
  • @drvcrazy3
    hey how do you copy the car to use in other builds i tried copy and paste but my wheel isnt onb the duplicated car i dont understand why if its exactly the same