Video: Watch 2025-03-30 08-14-21 | Streamable
Game (Direct) Link: (Hang Out Server) Hade's RNG - Roblox
System Infomation:
Windows 11 Home
GPU: RTX 4080 SUPER
CPU: AMD Ryzen 9 7950X 16-Core
Ram: 64 GB
Video: Watch 2025-03-30 08-14-21 | Streamable
Game (Direct) Link: (Hang Out Server) Hade's RNG - Roblox
System Infomation:
Windows 11 Home
GPU: RTX 4080 SUPER
CPU: AMD Ryzen 9 7950X 16-Core
Ram: 64 GB
Hi @HadeSynths , thank you for reporting the issue. Could you please explain what is expected and not expected in the video? And if possible, could you share a related UI file and scripts with us for investigation? Thank you
After clicking the UI object button, the GuiState does not return to ‘Idle’ and remains unchanged, causing significant visual issues in the game UI. Please help.
local function ApplyButtonEffect(button)
if button:FindFirstChildOfClass("TextButton") then
local TextButton = button:FindFirstChildOfClass("TextButton")
local OriginalColor : Color3 = button.BackgroundColor3
local OriginalSize = button.Size
TextButton:GetPropertyChangedSignal("GuiState"):Connect(function()
if TextButton.GuiState == Enum.GuiState.Idle then
TweenService:Create(button, TweenInfo.new(.12), {BackgroundColor3 = OriginalColor, Size = OriginalSize}):Play()
elseif TextButton.GuiState == Enum.GuiState.Hover then
if OriginalColor == Color3.fromRGB(66, 66, 66) then
button.BackgroundColor3 = changeBrightness(OriginalColor, .356)
else
TweenService:Create(button, TweenInfo.new(.1), {BackgroundColor3 = changeBrightness(OriginalColor, .66)}):Play()
end
elseif TextButton.GuiState == Enum.GuiState.Press then
TweenService:Create(button, TweenInfo.new(.055), {Size = OriginalSize - UDim2.new(.05,0,.02,0)}):Play()
end
end)
end
end
also our game uis working fine before roblox update. roblox update just fully broke our ui visual animate system
I see, thanks for providing your script!
We recently rolled out a fix for GuiState
that may have affected how your script behaves. Previously, after pressing a button (GuiState == Press
), the state would go back to Idle
even if the mouse was still hovering over the button. This was actually considered a bug and it should return to Hover
, which was fixed in our latest update.
When I looked at your script, it seems the original ApplyButtonEffect
logic only resets the button size in the Idle
branch, not in Hover
. With the fix, after pressing the button, the background color changes to the hover color as expected, but the button size remains shrunken because Hover
doesn’t reset the size. This makes it look like the button stays “pressed”.
To fix this, we need to add the resizing logic such as TweenService:Create(button, TweenInfo.new(.12), {BackgroundColor3 = OriginalColor, Size = OriginalSize}):Play()
in the Hover
state as well(after the line elseif TextButton.GuiState == Enum.GuiState.Hover then
) - that way the button resets both color and size when returning to Hover
.
Hopefully this change helps! Please let me know if you have any further question.