This script is supposed to check Workspace for newly inserted objects, see if those objects are within the parameters of an array, and to check if that newly created object is a player's character, if not either of those things, to remove it.
However, regardless of whether or not that object is within the parameters of the array, the script still deletes it.
Can someone please help?
Here's the script:
01 | local allowed = { "Handle" , "Bullet" , "Rocket" , "Camera" , "Bomb" , "Explosion" , "Humanoid" , "Part" , "Missile" , "Grenade" , "Flashbang" } |
02 |
03 | workspace.ChildAdded:connect( function (item) |
04 | Check(item) |
05 | end ) |
06 |
07 | function Check(item) |
08 | for i,v in pairs (allowed) do |
09 | if v [ i ] = = item.Name or item:FindFirstChild( "Humanoid" ) then |
10 | print ( 'good' ) |
11 | else |
12 | item:Destroy() |
13 | end |
14 | end |
15 | end |
The reason it wasn't working is because you are checking the entire table and deleting it if it returns false (I insert a humanoid, everything in the table except for humanoid will delete it)
The solution would be to add a boolean to it
01 | local allowed = { "Handle" , "Bullet" , "Rocket" , "Camera" , "Bomb" , "Explosion" , "Humanoid" , "Part" , "Missile" , "Grenade" , "Flashbang" } |
02 | local checked = false |
03 |
04 | workspace.ChildAdded:connect( function (item) |
05 | Check(item) |
06 | end ) |
07 |
08 | function Check(item) |
09 | for _,v in pairs (allowed) do |
10 | if v = = item.Name or item:FindFirstChild( "Humanoid" ) then |
11 | checked = true |
12 | end |
13 | end |
14 | if not checked then wait() item:Destroy() end |
15 | checked = false |
16 | end |