hello , i want add a accessory remover inside this script at line 20 but i don't know how to do this can you help me please ? thanks you !
script (line 20)
01 | local function ChangeClothes(char, shirtid, pantsid) |
02 | local shirt = char:FindFirstChildOfClass "Shirt" or Instance.new( "Shirt" , char) |
03 | local pants = char:FindFirstChildOfClass "Pants" or Instance.new( "Pants" , char) |
04 | shirt.ShirtTemplate = shirtid |
05 | pants.PantsTemplate = pantsid |
06 | end |
07 |
08 | local remote = game.ReplicatedStorage.Security |
09 | LVL 5 = game.ReplicatedStorage [ "[SCP] Card-L5" ] |
10 | Flashlight = game.ReplicatedStorage.Flashlight |
11 | P 90 = game.ReplicatedStorage [ "P90 TR" ] |
12 |
13 |
14 | function remote.OnServerInvoke(player, TeamName) |
15 | if #game:GetService( "Teams" ):FindFirstChild( "Security Departement Head" ):GetPlayers() = = 0 then -- team check |
Loop throughout the player's character, checking whether or not the player holds an accessory, then delete the object. We can usually accomplish this task by using and understanding a for i,v in pairs loop(You can find this here: http://wiki.roblox.com/index.php/Loops). Next, we would have to determine whether the object in the player's character is an accessory. We can accomplish by using :IsA instance given to us by ROBLOX (Which can be found here: http://wiki.roblox.com/index.php?title=API:Class/Instance/IsA). Understanding these two concepts can now lead us to form the coding part of it. Use this as an example.
1 | for i,v in pairs (char:GetChildren()) do -- Looping through the player's character |
2 | if v:IsA( "Accessory" ) -- Determining whether or not it's an accessory |
3 | v:Destroy() -- Destroying it |
4 | end |
5 | end |