November 29, 2008

How to make VIP doors

November 28, 2008
  1. Add really cool stuf into and area thats competely closed off. I would use 5 bricks.
  2. Select the brick (not several bricks, or a group of bricks, or a model, but a single brick, use the modify size tool) Then, click Insert and select Object.
  3. Find the Script object in the menu that appears, and select it.
  4. Double click on the script in the Explorer tab to open it.

     5.change the “print (Hello World!)” to

print(“VIP Door Script loaded”)

— list of account names allowed to go through the door.
permission = {“Player1”, “Player2”, “Player3”}–Put your friends name’s here. You can add more.

function checkOkToLetIn(name)
for i = 1,#permission do
— convert strings to all upper case, otherwise we will let in,
— “conrad105,” and, “builderman,” but not, “blast1.”
                — Why? Because, “blast1,” is how it is spelled in the permissions.
if (string.upper(name) == string.upper(permission[i])) then return true end
end
return false
end

local Door = script.Parent

function onTouched(hit)
print(“Door Hit”)
local human = hit.Parent:findFirstChild(“Humanoid”)
if (human ~= nil ) then
— a human has touched this door!
print(“Human touched door”)
— test the human’s name against the permission list
if (checkOkToLetIn(human.Parent.Name)) then
print(“Human passed test”)
Door.Transparency = 0.7
Door.CanCollide = false
wait(4) — this is how long the door is open
Door.CanCollide = true
Door.Transparency = 0
else human.Health= 0 — delete this line of you want a non-killing VIP door
end
end
end

script.Parent.Touched:connect(onTouched)

     6.Then just change the Player1,Player2, Player3 to your friends names. (There can be more that three.)

Now your done!

Hello! How-to sign up

November 22, 2008

Welcome! This is the first post of what is going to be a great site! Roblox is a awesome game! If you want it but can’t find where to sign up? Just go to http://roblox.com

1. Click register

register

2. Pick your age.

age

3.  Pick username and password

userpass


Design a site like this with WordPress.com
Get started