|
| 02 May 2009 10:24 PM |
I was wondering about something. I am currently building a model for a car but the problem is I have to change the formFactor of the seat to "plate" but I can't find a formFactor. And I looked on a regular brick it has formFactor! Why won't this work?
Another question is how do you make a VIP door for a particular person? I want to know because my friend made one and he's not in Builders Club.
My other question is I'm building an obstacle course and I'm looking for some ideas to put in for obstacles. Got any ideas?
Please Help Me!!! |
|
|
| Report Abuse |
|
| |
|
| 02 May 2009 10:38 PM |
1. An update removed formFactor in Seats... I think.
2. Use this script inside the VIP door.
vips={"a7xUndeadArmy","BroccoliFace","NotherName"} function onTouched(hit) if hit.Parent~=nil then player=game.Players:GetPlayerFromCharacter(player) if player~=nil then for count,a in pairs(vips) do if string.lower(a)==string.lower(player.Name) then script.Parent.CanCollide=false script.Parent.Transparency=.6 wait(3) script.Parent.CanCollide=true script.Parent.Transparency=0 end end end end end script.Parent.Touched:connect(onTouched)
3. Make the classics (lava jumps, cable walk, platform jump) and then add some like this: a walkway with bricks moving across it that knock you off, a pit of bricks that you have to dig through to get to the next cp. |
|
|
| Report Abuse |
|