Character Reset problem

Hello!
I’m currently developing a PvP game, and when you use an ability, you can reset, making the ability system pop an error.

What do I want to achieve?
When you use an ability, you can’t reset, and after some time, you will be able to reset.

1 Like

In a local script:

local starterGui = game:GetService("StarterGui")

starterGui:SetCore("ResetButtonCallback", false) --// Use this to disable resetting

starterGui:SetCore("ResetButtonCallback", true) --// Use this to enable resetting
2 Likes

Thank you.
Should I call it from the abilities system (using FireClient and passing true and false)?

1 Like

Yes, that should work perfectly. That is how I would do it.

Sure, thanks for your help :smile:

some words because of minimum :sob:

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.