Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

how can i add a "Accessory remover" inside this script ?

Asked by 6 years ago

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)

01local 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
06end
07 
08local remote = game.ReplicatedStorage.Security
09                LVL5 = game.ReplicatedStorage["[SCP] Card-L5"]
10                        Flashlight = game.ReplicatedStorage.Flashlight
11                        P90 = game.ReplicatedStorage["P90 TR"]
12 
13 
14function remote.OnServerInvoke(player, TeamName)
15    if #game:GetService("Teams"):FindFirstChild("Security Departement Head"):GetPlayers() == 0 then -- team check
View all 32 lines...

1 answer

Log in to vote
0
Answered by 6 years ago

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.

1for i,v in pairs(char:GetChildren()) do -- Looping through the player's character
2if v:IsA("Accessory") -- Determining whether or not it's an accessory
3v:Destroy() -- Destroying it
4end
5end
Ad

Answer this question