of     1   

TheDragonFish
#140881520Saturday, July 19, 2014 9:51 PM GMT

Car = Game.Workspace.Car.VehicleSeat while true do if Car.Throttle == 1 then print "1" end wait() end Why won't this work? I am trying to print 1 when the Throttle of this car is 1
Zawie
#140881916Saturday, July 19, 2014 9:55 PM GMT

print("1")
blox6137
#140881969Saturday, July 19, 2014 9:55 PM GMT

@CrowClaws, either work, so I doubt that will fix it.
TheDragonFish
#140882030Saturday, July 19, 2014 9:56 PM GMT

It did not fix it.
TheDragonFish
#140882140Saturday, July 19, 2014 9:57 PM GMT

It works now nvm. thx
Zawie
#140882247Saturday, July 19, 2014 9:58 PM GMT

game.Workspace game has to be lowercase I believe.
TheDragonFish
#140882787Saturday, July 19, 2014 10:03 PM GMT

I have another question. How do I make it where it prints 1 when the speed is 1 There is no speed in Vehicle seat
Zawie
#140883041Saturday, July 19, 2014 10:05 PM GMT

Isn't throttle speed??? In roblox atleast.
TheDragonFish
#140883168Saturday, July 19, 2014 10:06 PM GMT

No
TheDragonFish
#140883365Saturday, July 19, 2014 10:09 PM GMT

I wish you could go inside the scripts behind properties.
TheDragonFish
#140883763Saturday, July 19, 2014 10:13 PM GMT

it might be the wheels that have speed idk
Zawie
#140884040Saturday, July 19, 2014 10:16 PM GMT

Well couldn't you find the speed by doing something like A = Wheels.Position wait(1) B = Wheels.Position Speed = B - A Obviosuly with more stuff but, It would take the distance made in 1 second.
TheDragonFish
#140887168Saturday, July 19, 2014 10:52 PM GMT

Ok, here is what I have but it is still not working. while true do A = game.Workspace.Car.something.Position wait(1) B = game.Workspace.Car.something.Position Speed = A - B print(speed) end
TheDragonFish
#140902047Sunday, July 20, 2014 1:28 AM GMT

Someone please correct this.
TheDragonFish
#140902763Sunday, July 20, 2014 1:36 AM GMT

bump
PalmToFace
#140902798Sunday, July 20, 2014 1:36 AM GMT

@Crow -plm 2 fce- it culd b game or Game an it culd b w/ or w/o parentitees
TheDragonFish
#140902991Sunday, July 20, 2014 1:39 AM GMT

Why is the script not working?
Zawie
#140958566Sunday, July 20, 2014 4:48 PM GMT

I said something like it. Remember position is x,y,z so....
TheDragonFish
#140969285Sunday, July 20, 2014 6:47 PM GMT

Ok the script finally works. It was just a simple spelling error. Now how do you convert the Vector3 x,y,z coordinate to a speed. BTW I am using velocity.
PalmToFace
#140970405Sunday, July 20, 2014 7:00 PM GMT

You don't convert a Vector3 to a speed. You work with several Vector3s to find an acceleration, which you can interpret to a speed.

    of     1