Skip to main content

Introduction

Coming Soon

For now here is an example:

-- Client.lua

local cc = exports['cc-transitions'] -- This is required

Citizen.CreateThread(function()
cc.ToggleLoadingTransition('', true) -- Shows the UI
Wait(5000) -- Wait's 5 secconds
cc.ToggleLoadingTransition('', false) -- Hides the UI
end)