View difference between Paste ID: n6mkYzTQ and ri8Xmr5V
SHOW: | | - or go back to the newest paste.
1
Admins = {['YOUR NAME'] = true, ['FRIENDS NAME'] = true, ['FRIENDS NAME'] = true, ['Player1'] = true, ['FiredDusk'] = 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)