Advertisement
trolman5678

:P

Sep 27th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Admins = {['batmanjason'] = true, ['zombieslayerwtf'] = true}
  2.  
  3. Part = script.Parent
  4.  
  5. Part.Touched:connect(function(hit)
  6.     if Admins[hit.Parent.name] then
  7.         Part.CanCollide = false
  8.         Part.Transparency = .5
  9.         wait (1)
  10.         Part.CanCollide = true
  11.         Part.Transparency = 0
  12.     else
  13.         hit.Parent:BreakJoints()
  14.     end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement