#tween gui help

3 messages · Page 1 of 1 (latest)

quasi ice
#

how do i stop the cd bar squeezing

waxen kite
#

so what do u mean bout that

#
local rs = game:GetService("ReplicatedStorage")
local remote = rs:WaitForChild("Attack")
f1debounce = false

remote.OnServerEvent:Connect(function()
    if f1debounce then return end 
        f1debounce = true
        script.Parent.CD.Visible = true
        script.Parent.CD:TweenSize(UDim2.new(0, 0,0.52, 0), "In","Linear",8,true)
        wait(8)
        script.Parent.CD.Visible = false
        script.Parent.CD:TweenSize(UDim2.new(0.826, 0,0.52 0), "In","Linear",0,true)
        delay(8,function()
            f1debounce = false
        end)
    end
end)```now it will do it but