What do you want to achieve? Keep it simple and clear!
I’m working on graphic toggle, and on low graphics i wanna turn all animations of other objects except player one
What is the issue? Include screenshots / videos if possible!
Idk how to do that
What solutions have you tried so far? Did you look for solutions on the Developer Hub? I check tons of topics, but didn’t find any about this
My current graphic changer code:
local GraphicsHandlerEvent = workspace.Events.GraphicsHandlerEvent
local Lighting = game:GetService("Lighting")
local Player = game:GetService("Players").LocalPlayer
GraphicsHandlerEvent.OnServerEvent:Connect(function(quality)
if quality == "Low" then
Lighting.GlobalShadows = false
end
end)
I wish that could help, but i literally need to turn animations off on low graphics, i looked up though tons of topics, and didn’t find any working method
local GraphicsHandlerEvent = workspace.Events.GraphicsHandlerEvent
local Lighting = game:GetService("Lighting")
local Player = game:GetService("Players").LocalPlayer
GraphicsHandlerEvent.OnServerEvent:Connect(function(player, quality)
if quality == "Low" then
Lighting.GlobalShadows = false
end
end)
I think i will mark this topic as solved, because i checked few topics about server animations, and they don’t really decrease fps for client, so i won’t disable animations on low graphics, i have few things what should be disabled: effects and some client animations, thank everyone for help.