of     1   

AssassinChao
#152350Monday, September 17, 2007 12:01 AM GMT

here is the script i have... (i modified it from a rocket ship's go button script to make a car go by itself with out steering... kinda like Are92's cars) __________________________________________________________________________ local engine = script.Parent.Parent.Engine local bodyforce = engine.BodyForce local debounce = false function onTouched(hit) local humanoid = hit.Parent:findFirstChild("Humanoid") if humanoid~=nil and debounce == false then debounce = true script.Parent.BrickColor = BrickColor.new(21) bodyforce.force = Vector3.new(0,0,1000) wait(8) --bodyforce.force = Vector3.new(math.random(-10000,10000),math.random(-10000,10000),math.random(-10000,10000)) --wait(.5) bodyforce.force = Vector3.new(0,0,0) script.Parent.BrickColor = BrickColor.new(28) wait(1) debounce = false end end script.Parent.Touched:connect(onTouched) ___________________________________________________________________________ plz tell me wats wrong with this script?
totti
#152775Monday, September 17, 2007 2:55 PM GMT

Debounce...thats whats wrong with it.....lol ok so it's not but I hate debounce Totti
Anaminus
Top 100 Poster
#153180Monday, September 17, 2007 10:15 PM GMT

Increase the force. bodyforce.force = Vector3.new(0,0,-->1000<--) ?-Anaminus-?
Infecter
#25613835Wednesday, May 12, 2010 1:56 PM GMT

,
Megaweapon
#25614259Wednesday, May 12, 2010 2:30 PM GMT

the guy up of me spamming sooo noob
WK100
#25614417Wednesday, May 12, 2010 2:43 PM GMT

Mega, get off the forums now. You're flaming everywhere.
Megaweapon
#25620268Wednesday, May 12, 2010 6:53 PM GMT

hey bumber allow post replys,in your posts now,you,re spaming everywhere,you must been banned 3 years ago

    of     1