How to remove grid under dummy's animation

i want to make game thumbnail and screenshot animation but it have a grid

You could publish the animation and copy the asset id, then put a script into the rig with this code :

local Animation = Instance.new("Animation")
Animation.AnimationId = "rbxassetid://"--Paste your id after the slashes

local AnimationTrack = script.Parent.Humanoid:LoadAnimation(Animation)

AnimationTrack.Looped = true
AnimationTrack:Play()

Then you just run the game and take a screenshot

2 Likes