How would I be able to remove grids from the animation editor?

  1. So I want to make an animation, for a cinematic kind of movie, and there is one thing bugging me.

  2. When I attempted to animate, I noticed a grid under the character, and the angle is fine for the character and I don’t want to change it to not see the grid.

  3. I tried searching solutions on YouTube and Google, but to no success.

12 Likes

try entering this in your command bar while your animation editor is active, change false to true to change it back

local fold = game:GetService("CoreGui").GridLines; for i, v in pairs(fold:GetChildren()) do v.Visible = false end

actually figured this out when I was trying to figure out how to look at the animation editor’s GUIs :grinning:

58 Likes