Тёмный
No video :(

How to make a simple car in Roblox Studio 

Shadow Fox Studio
Подписаться 41
Просмотров 13 тыс.
50% 1

In this video, I show you how to make a simple car in Roblox Studio.

Опубликовано:

 

23 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 83   
@KRIS_STUDIOSYT
@KRIS_STUDIOSYT Год назад
local Seat = script.Parent.VehicleSeat local FrontRight = script.Parent.FrontRight local FrontLeft = script.Parent.FrontLeft local BackLeft = script.Parent.BackLeft local BackRight = script.Parent.BackRight local BodyAngularVelocity = script.Parent.Base.BodyAngularVelocity Seat.Changed:Connect(function() if Seat.Throttle == 1 then elseif Seat.Throttle == -1 then elseif Seat.Throttle == 0 then end if Seat.Steer == 1 then elseif Seat.Steer == -1 then elseif Seat.Steer == 0 then end end)
@xxfoodisfoodxx
@xxfoodisfoodxx 3 месяца назад
obama
@Woter389
@Woter389 2 месяца назад
obama
@offyoutube6964
@offyoutube6964 Год назад
-- I set both my front wheels as motors, no idea how the steer function works but everything else should work fine -- tells the script that these parts exist local Seat = script.Parent.VehicleSeat local FrontRight = script.Parent.FrontRight local FrontLeft = script.Parent.FrontLeft local BackLeft = script.Parent.BackLeft local BackRight = script.Parent.BackRight local BodyAngularVelocity = script.Parent.Base.BodyAngularVelocity Seat.Changed:Connect(function() --function is telling when this is called execute this if Seat.Throttle == 1 then -- changes throttle appon a key press meaning if it is = to one it will execute this code FrontLeft.HingeConstraint.AngularVelocity = 25 -- tells vehicle to accelerate at specifed speed FrontLeft.HingeConstraint.MotorMaxTorque = 10000 -- force of rotation FrontRight.HingeConstraint.AngularVelocity = -25 FrontRight.HingeConstraint.MotorMaxTorque = 10000 elseif Seat.Throttle == -1 then FrontLeft.HingeConstraint.AngularVelocity = -25 FrontLeft.HingeConstraint.MotorMaxTorque = 10000 FrontRight.HingeConstraint.AngularVelocity = 25 FrontRight.HingeConstraint.MotorMaxTorque = 10000 elseif Seat.Throttle == 0 then FrontLeft.HingeConstraint.AngularVelocity = 0 FrontLeft.HingeConstraint.MotorMaxTorque = 0 FrontRight.HingeConstraint.AngularVelocity = 0 FrontRight.HingeConstraint.MotorMaxTorque = 0 end -- bottom code never worked for me but the rest should be OK if Seat.Steer == 1 then BodyAngularVelocity.MaxTorue = Vector3.new(0,10000,0) BodyAngularVelocity.AngularVelocity = Vector3.new(0,-5,0) elseif Seat.Steer == -1 then BodyAngularVelocity.MaxTorue = Vector3.new(0,10000,0) BodyAngularVelocity.AngularVelocity = Vector3.new(0,5,0) elseif Seat.Steer == 0 then BodyAngularVelocity.MaxTorue = Vector3.new(0,10000,0) BodyAngularVelocity.AngularVelocity = Vector3.new(0,0,0) end end)
@FloatingCatGames
@FloatingCatGames 6 месяцев назад
hey so uh funny mistake u made the bottom script u spelt MaxTorque wrong.
@oberonpanopticon
@oberonpanopticon Год назад
I tried to follow along with this tutorial but I find it’s really lacking in detail. You explain barely any of what you’re doing, especially with the scripting (which I’d imagine is the most important part). Maybe this tutorial just isn’t for absolute beginners, and it’s probably hard to go into detail when you only have on-screen text to explain with, but regardless it seems kinda like a “teach a man to fish” type of scenario. (Show a man what to do to make a Roblox car and he’ll have a Roblox car, tell a man how and why a Roblox car works and he’ll be set for life)
@darienlj
@darienlj Год назад
I agree my car is messed up because it shakes every time i drive it because of the wheels and he doesnt make it clear what to do when this happens
@DoogChicken
@DoogChicken 10 месяцев назад
not just you, I've been making games since 2019 and this tutorial sucks
@brockbaker1894
@brockbaker1894 Год назад
Finally one that’s new
@ShadowFox-Studio
@ShadowFox-Studio Год назад
Thanks!
@lucasanimals5917
@lucasanimals5917 6 месяцев назад
ppyyyyyyyyyyyyyyyyyyyyyyuyuyuuyuyeyccoppinjs \
@lucasanimals5917
@lucasanimals5917 6 месяцев назад
. .
@BivonDoesStuff
@BivonDoesStuff 21 день назад
Wait.. I never got to find this video! I'm lucky
@BreadyTheFemboyOwO
@BreadyTheFemboyOwO 11 месяцев назад
Instructions unclear: the car isn't accelerating
@ShadowFox-Studio
@ShadowFox-Studio 11 месяцев назад
Well you broke it!
@BreadyTheFemboyOwO
@BreadyTheFemboyOwO 10 месяцев назад
@@ShadowFox-Studio dam
@Gr33nSc0ut
@Gr33nSc0ut Год назад
You just got a sub
@ShadowFox-Studio
@ShadowFox-Studio Год назад
Thanks!
@Gr33nSc0ut
@Gr33nSc0ut Год назад
@@ShadowFox-Studio will you remember me when you get famous I am your 3rd sub
@KitGeri
@KitGeri Год назад
Thank you for the tutorial but there is one problem, I can't find the BodyAngularVelocity, how can I put it in?
@Gamer-jo5bx
@Gamer-jo5bx 11 месяцев назад
Use angularvelocity instead because BodyAngularVelocity is deprecated
@snicker145
@snicker145 5 месяцев назад
or u can do instance.new("BodyAngularVelocity,",workspace)
@Yks6767
@Yks6767 Месяц назад
@@Gamer-jo5bx tank u
@Gamer-jo5bx
@Gamer-jo5bx 11 месяцев назад
i made a car only by vectorforce and angular velocity this is very simple
@ShadowFox-Studio
@ShadowFox-Studio 11 месяцев назад
I made a car similar to that one too. I used BodyAngularVelocity and BodyVelocity.
@Gamer-jo5bx
@Gamer-jo5bx 11 месяцев назад
@@ShadowFox-Studio yes
@user-uo8nh2mn7y
@user-uo8nh2mn7y Месяц назад
Is the tutorial the same for 2024?
@user-vi4lc4zg2g
@user-vi4lc4zg2g Месяц назад
bro how do you select 2 things at once
@Zestymessbro
@Zestymessbro Месяц назад
Press shift + left click
@user-vi4lc4zg2g
@user-vi4lc4zg2g Месяц назад
@@Zestymessbro anks
@anonymouslyartist
@anonymouslyartist Год назад
How can I make like a key like that you can only sit on the seat when you have that key
@ShadowFox-Studio
@ShadowFox-Studio Год назад
Yes am do later
@Not_ThatKidYT
@Not_ThatKidYT Год назад
New sub
@ShadowFox-Studio
@ShadowFox-Studio Год назад
Thanks
@Not_ThatKidYT
@Not_ThatKidYT Год назад
It does not work somehow
@ShadowFox-Studio
@ShadowFox-Studio Год назад
@@Not_ThatKidYT What happened?
@Not_ThatKidYT
@Not_ThatKidYT Год назад
The car script did nit work
@msandro010
@msandro010 Год назад
when i set the BackLeft wheel to act as a motor, it kinda destabilizes the whole vehicle since its big and makes it almost impossible to make curves. how can i fix that?
@ShadowFox-Studio
@ShadowFox-Studio Год назад
Try setting both of the back wheels as motors
@RepStars911
@RepStars911 10 месяцев назад
you can set the motorAcceleration to lower like 100 BackLeft.HingeConstraint.MotorMaxAcceleration = 100 and also add the second wheel as motor and make it work
@-._Radixerus_.-
@-._Radixerus_.- 8 месяцев назад
You'll have to add another motor that turns the wheels in the direction you want to turn.
@ThE_CuRSed_oNe_RB
@ThE_CuRSed_oNe_RB Год назад
hey! can you help me? i did a car with your angular velocity and linearvelocity ideas but i have a issue, the car shakes because the wheels movements
@ShadowFox-Studio
@ShadowFox-Studio Год назад
Did you set the wheel settings right?
@darienlj
@darienlj Год назад
@@ShadowFox-Studio What are the wheel settings
@ShadowFox-Studio
@ShadowFox-Studio Год назад
One of them is a motor and the other 3 are hinges
@YUSUF12788
@YUSUF12788 Год назад
pls help how do i connect vehicleseat to wheels i only need this to ride a car
@ShadowFox-Studio
@ShadowFox-Studio Год назад
Thats what the script is for
@YUSUF12788
@YUSUF12788 Год назад
@@ShadowFox-Studio ty
@jawsquint
@jawsquint Год назад
I dont see the body angular velocity option how do you get that? (edit:) I tried using just the normal angular velocity and it didnt work, I tried not editing the code you have at all and changing the bodyangular velocities to angular velocity and it still didnt work
@ShadowFox-Studio
@ShadowFox-Studio Год назад
You have to enable legacy items in Studio Settings or run instance.new("BodyAngularVelocity").Parent=workspace in the command bar
@xhqown7098
@xhqown7098 Год назад
@@ShadowFox-Studio Where do you enable legacy items?
@ShadowFox-Studio
@ShadowFox-Studio Год назад
@@xhqown7098 studio settings
@ShadowFox-Studio
@ShadowFox-Studio Год назад
@@xhqown7098 in studio settings > Studio, scroll to browsing, then enable "Depreciated Objects Shown"
@darienlj
@darienlj Год назад
@@ShadowFox-Studio this still wont work
@user-my8ox9pp2p
@user-my8ox9pp2p Год назад
when I go forward it turns
@ShadowFox-Studio
@ShadowFox-Studio Год назад
I think you scripted it wrong
@Icypenguin931
@Icypenguin931 6 месяцев назад
you should add the script in the description or comments
@user-xl9rr4nt4z
@user-xl9rr4nt4z Месяц назад
look
@RoniBaker
@RoniBaker Год назад
4:00
@Jordan_Mines
@Jordan_Mines 11 месяцев назад
Can you make it a model?
@ShadowFox-Studio
@ShadowFox-Studio 11 месяцев назад
What do you mean?
@eliasp33
@eliasp33 11 месяцев назад
@@ShadowFox-Studio He means to make it a model so that we can download the exact car you made and use it in our game
@ShadowFox-Studio
@ShadowFox-Studio 11 месяцев назад
@@eliasp33 sure! I just need to find where I put the file for it
@user-my8ox9pp2p
@user-my8ox9pp2p Год назад
hey I need help
@lia_heeler
@lia_heeler 11 месяцев назад
i dont have bodyangleerveloassity
@ShadowFox-Studio
@ShadowFox-Studio 11 месяцев назад
Enable "Show Depreciated Objects" in studio settings
@AQUA69.
@AQUA69. 2 месяца назад
sydney trains game purpose be like
@lia_heeler
@lia_heeler 2 месяца назад
@@AQUA69. I love Sydney train games
@supresoft6699
@supresoft6699 Год назад
I don’t think a script is a “Simple car”
@ThE_CuRSed_oNe_RB
@ThE_CuRSed_oNe_RB Год назад
if you want to make a roblox game 100% you need to know how to script, dont expect anything if you dont inow nothing about lua or scripting Btw that script uses too basic functions of scripting that are very easy so thats why its simple
@ShadowFox-Studio
@ShadowFox-Studio Год назад
You can't make a car without a script
@dude9436
@dude9436 Год назад
I want to learn how to use lua but it’s so confusing to me
@oberonpanopticon
@oberonpanopticon Год назад
unfortunately it doesn’t seem like it gets any simpler. It seems like it might have actually been easier in older versions of Roblox, but I’d need to do more research to be sure.
@ShadowFox-Studio
@ShadowFox-Studio Год назад
@@oberonpanopticon It's actually harder in older versions of roblox due to the fewer amount of tools
Далее
I Asked AI To Make Redstone For Me
11:16
Просмотров 7 млн
“Bernabéu… pressure… 90,000” 🔥🔥🔥
01:02
💀СЛОМАЛ Айфон за 5 СЕКУНД😱
00:26
Making My Roblox Game VIRAL in 24 HOURS
9:24
Просмотров 31 тыс.
3 Hours vs. 3 Years of Blender
17:44
Просмотров 4,6 млн
How to PATHFIND in Roblox 2024 using Forbidden
6:30
Просмотров 18 тыс.
I Tried To Beat Minecraft Backwards
18:53
Просмотров 1,4 млн
If UNDERTALE played ROBLOX (Animation)
46:02
Просмотров 2 млн
How to Build a Simple Car : Roblox Studio
8:23
Просмотров 159 тыс.
10 Minutes vs. 10 Years of Sculpting
19:48
Просмотров 480 тыс.
New to Studio? Get These FREE Plugins!
9:40
Просмотров 377 тыс.