What do you want to achieve? I want to make a glove
What is the issue? I used Humanoid:AddAccessory but it didnt work. And this is the model on explorer.(So you can check missing things)
And here is the script:
(On ServerScriptService and i got this script from a mini tutorial)
local test = game:GetService("ServerStorage").RYFG
workspace:WaitForChild("YellowFireTheCoder").Humanoid:AddAccessory(test:Clone())
What solutions have you tried so far? I used Humanoid:AddAccessory but it didnt work.
What is OB? I think it is primary part, am i right?
Edit: Didnt work so i wrote this script:
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local r = game.ServerStorage.RYF
local l = game.ServerStorage.LYF
char.Humanoid:AddAccessory(r:Clone())
char.Humanoid:AddAccessory(l:Clone())
end)
end)
You are using “Weld”, and with those you need to specify the offset of the parts. Instead, use “WeldConstraint”, which will weld the two parts in their current positions.
Also, here is some more info if you don’t want to use welds at all.