I want to make it so that the player’s arms change into the arms of this and this
I’ve tried changing the meshid via a script but it doesnt work
Character = script.Parent--The script is in startercharacterscripts
LeftUpperArm = Character:WaitForChild("LeftUpperArm")
LeftLowerArm = Character:WaitForChild("LeftLowerArm")
LeftHand = Character:WaitForChild("LeftHand")
RightUpperArm = Character:WaitForChild("RightUpperArm")
RightLowerArm = Character:WaitForChild("RightLowerArm")
RightHand = Character:WaitForChild("RightHand")
LeftUpperArm.MeshId = "https://assetdelivery.roblox.com/v1/asset/?id=12733723920"
LeftLowerArm.MeshId = "https://assetdelivery.roblox.com/v1/asset/?id=12733723918"
LeftHand.MeshId = "https://assetdelivery.roblox.com/v1/asset/?id=12733723924"
RightUpperArm.MeshId = "https://assetdelivery.roblox.com/v1/asset/?id=12733723967"
RightLowerArm.MeshId = "https://assetdelivery.roblox.com/v1/asset/?id=12733723968"
RightHand.MeshId = "https://assetdelivery.roblox.com/v1/asset/?id=12733723983"
i could use the game settings
but i’d rather it being local
does anyone have any ideas?