I want to create a custom sitting animation for my game “ROXY”
The issue is, is that when we upload it when the main person who made the animation - It works for him whereas when I sit on it “Animation is for a seat” it doesn’t work - Then when we upload it to my game it doesn’t work for either of us. How do I fix this problem?
Here are some screenshots to make it more clear!
Then when I sit on it
Note we are both Using R15 And the seat is only R15 compatible.
To mention about sitting animation, you have to make sure if a dev that animates for you gave a copy of animations saved in the character they animated
if you’re the game owner, ask the animator if he/she gave you the animation to the rigs
Your animations from dev uploaded directly to their inventory cannot be used if it’s pasted into your game because it is under protected by anti-thief API so it is best that you upload it to your inventory when he gave you one
if the animation is under a Group then you can use it for group games only
seat = script.Parent
function added(child)
if (child.className==“Weld”) then
human = child.part1.Parent:FindFirstChild(“Humanoid”)
if human ~= nil then
anim = human:LoadAnimation(seat.sitanim)
anim:Play()
end
end
end
function removed(child2)
if anim ~= nil then
anim:Stop()
anim:Remove()
end
end
Reupload the animation to the game itself, whether it is under a group or a user. And set the new animation IDs. I am out of ideas for you bud, my fault.
Don’t worry, i’ve already tried that. Maybe its just a roblox issue because Ive done these types of things before but this is the first time im having a issue.
Let me make it clear to you that, it’s not any script issue or animation issue. When the developer uploaded the animations to roblox, they did not set “Creator” as the group the game is in which is causing the issue. I’ve worked for a Vibe game and I have had the same issue.
To fix it, simply re-upload the animations and make sure to select group as the creator. Then replace the IDs. Ask your developer to upload the animations on YOUR group and use the new IDs.