Advertisement

Roblox Scripting | How To Make An Admin Door | Only Certain Players Can Go Through The Door (2016)

Roblox Scripting | How To Make An Admin Door | Only Certain Players Can Go Through The Door (2016) Today I will be teaching you guys how to make/add an admin door to your roblox game.This admin door only lets certain people through.

Script:

Admins = {['terrencegamingUTUBE'] = true, ['Player1'] = true}

Part = script.Parent

Part.Touched:connect(function(hit)
if Admins[hit.Parent.name] then
Part.CanCollide = false
Part.Transparency = .5
wait (1)
Part.CanCollide = true
Part.Transparency = 0
else
hit.Parent:BreakJoints()
end
end)

Just copy and paste this if you are lazy xD.
Previized:

Hope You Guys Enjoy.

#hangoutsonair,Hangouts On Air,#hoa,

Post a Comment

0 Comments