This isn't working! Help?
I'm trying to make this shield that defends against bullets and paintballs, but it isn't working!
01 | function onTouched(part) |
02 | if part.Name = = "Bullet" or "Paintball" then |
03 | Shield = Instance.New( "Part" ) |
04 | Shield.Size = Vector 3. new(. 2 ,. 2 ,. 2 ) |
05 | Shield.CanCollide = false |
06 | Shield.Parent = game.Workspace |
07 | Shield.BrickColor = ( "Really red" ) |
08 | Shield.Position = script.Parent |
10 | local mesher = Instance.new( "BlockMesh" ) |
11 | mesher.Parent = Shield |
12 | mesher.Scale = Vector 3. new( 0.2 , 0.2 , (script.Parent.Position - onTouched(part).Position).magnitude) |
14 | explosion = Instance.new( "Explosion" ) |
15 | explosion.Parent = game.Workspace |
16 | explosion.Position = part |