2023-01-20T23:00:00Z→2023-01-30T23:00:00Z
I wanna try to make a equip/unequip accessories in players for my game but i don’t know where to start…
if someone can teach it to me it would be really appreaciate!
This is a very simple function so I’ll show you how to do the entire thing.
First of all, you need the proximity prompt to work.
(put inside the prompt)
script.Parent.Triggered:Connect(function(player)
-- function
end)
Now that you can actually trigger it, here’s what I recommend doing. Put the accessory you want to give to the player inside of a folder in ReplicatedStorage. Call it anything you want, though I’ll call it “Accessories”. I’ll name the accessory “Hat”.
Now you want to clone the accessory on trigger and put it in the player’s character.
local accessories = game.ReplicatedStorage.Accessories
local accessory = "Hat" -- set this to the accessory name
script.Parent.Triggered:Connect(function(player)
if not player.Character:FindFirstChild(accessory) then
local hat = accessories[accessory]:Clone()
hat.Parent = player.Character
else
player.Character[accessory]:Destroy()
end
end)
Simple usage of Clone(). The script checks if the player has a accessory called “Hat”. If not, it gets cloned and parented to the player’s character. If yes, it gets destroyed.
Hope this helps, mention me if you’re getting a error or need more help.