Currently when I equip my “spatula” the first time, the position will show incorrectly. But every time after I equip it after that, it shows correctly. I have no idea why, but i’m sure someone can point out the obvious to me here
Here is my code:
Tool = script.Parent
function posSword()
Tool.Grip = CFrame.new(0,-1,0)
end
function onEquipped()
posSword()
end
Tool.Equipped:connect(onEquipped)
Alright, so before I give what should hopefully fix the issue, connect is deprecated, so use Connect
Alrighty, so on the tool property, set the tool grip to the grip you have in the script, 0,-1,0
Hope that works!