ROBLOX - how to make a VIP door

Loading...

Sign in or sign up now!
Alert icon
Upgrade to the latest Flash Player for improved playback performance. Upgrade now or more info.
237 views
Loading...
Alert icon
Sign in or sign up now!
Alert icon

Uploaded by on Jan 30, 2012

Script:
print ("VIP T-Shirt Door Script Loaded")

-- list of account names allowed to go through the door.
permission = { "linky628" } -- This is how many people can still get through, so u don't have to change shirts. You can also have another friend here.

-- TextureId of the VIP shirt.
texture = "http://www.roblox.com/asset/?id=6035219" -- Go to the wiki below this script to find out how to change the shirt. And paste the link in between the "" marks.

function checkOkToLetIn(name)
for i = 1,#permission do
-- convert strings to all upper case, otherwise we will let in
-- "Username" but not "username" or "uSERNAME"
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
if human.Parent.Torso.roblox.Texture == texture then --the shirt Door.Transparency = 0.7 Door.CanCollide = false wait(4) -- this is how long the door is open Door.CanCollide = true Door.Transparency = 0 -- a human has touched this door! print("Human touched door") -- test the human's name against the permission list
elseif (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)

Category:

Gaming

Tags:

License:

Standard YouTube License

  • likes, 0 dislikes

Link to this comment:

Share to:

Uploader Comments (linky628)

  • but it's saying Bad request

  • @loganheinze What's saying Bad request?

see all

All Comments (5)

Sign In or Sign Up now to post a comment!
  • THANK YOU SOO MUCH:D

  • WOW Thank you sooooooo much it totally worked and i been trying to do that for  a while now

  • i did this one because it's the youngest one i could find

Loading...

Alert icon
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more