Skip to main content

â„šī¸ Tooltips

This allows the user to see extra information on a smooth animated Tooltip!

warning

This only works on button hover events, nothing else.

local Framework = require(path.to.framework).GetClient()
local GUI = Framework.GUI

To create a Tooltip, do the following:

local Tooltip = Framework.GUI.Tooltips.new(Button, "Tooltip Text")

To destroy the Tooltip completely, do:

Tooltip:destroy()