Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Admins = {['batmanjason'] = true, ['zombieslayerwtf'] = 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement