SHOW:
|
|
- or go back to the newest paste.
1 | - | Admins = {['YOUR NAME'] = true, ['FRIENDS NAME'] = true, ['FRIENDS NAME'] = true, ['Player1'] = true, ['FiredDusk'] = true} |
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 |
6 | + | if Admins[hit.Parent.name] then |
7 | Part.CanCollide = false | |
8 | Part.Transparency = .5 | |
9 | - | wait(1) |
9 | + | wait (1) |
10 | Part.CanCollide = true | |
11 | Part.Transparency = 0 | |
12 | else | |
13 | hit.Parent:BreakJoints() | |
14 | end | |
15 | end) |