I am making a car. Here is the code.
01 | local tractor = script.Parent |
02 | local stats = tractor.Configurations |
03 | local v = tractor.VehicleSeat |
04 |
05 | local bodyPos = tractor.Chassis.BodyVelocity |
06 | local bodyGyro = tractor.Chassis.BodyAngularVelocity |
07 |
08 | local runService = game:GetService( "RunService" ) |
09 | local lookVec = nil |
10 |
11 |
12 |
13 | tractor.VehicleSeat.Changed:Connect( function (property) |
14 | if property = = ( "Steer" ) then |
15 | bodyGyro.AngularVelocity = Vector 3. new( 0 ,v.Steer*- 5000 , 0 ) |
As you can see, I just put "or lookVec", but how do I find if lookVec's values have changed? Your Breakfast, TheFierceWaffle
This is kind of hacky but what you can do is make another variable called lastLookVec which in the loop we will set to the value of LookVec before we change it and then compare it to see if it changed in the next loop iteration. Instead of doing a while loop you could also use heartbeat in run service but for simplicity I will use a while loop. Heres and example.
01 | local lookVec = nil |
02 | local lastLookVec = nil |
03 | local lookVecChanged = false -- variable which we will set to show if it changed. |
04 | while true do |
05 | wait() |
06 | lookVecChanged = not lastLookVec = = lookVec -- this will show wether or not the lookVec is different from the old one. If it is different then lookVecChanged will be true(that is why the not is used). |
07 | lastLookVec = = lookVec -- this will make the lastLookVec variable the current lookVec so that in the next loop we can compare it to the value of lookVec and see if it has changed |
08 | if lookVecChanged then -- you could this to know if it changed in the situation you described above. |
09 | print ( "lookVec has changed!" ) |
10 | end |
11 | end |
Hope this helps. In my opinion this technique is kind of hacky and best to avoid. Also if you are using two while loops you will have to put one of them into a new thread so they will both run at the same time. I'm not exactly sure what you are doing so If you find you don't need to use this, definitely don't use this. Good luck.