
π§ How to Install
FiveStar Script
Requirements
Insert SQL
Tebex Shop
Tebex Secret
Placing subscribe properties on server scripts
Last updated

FiveStar Script
Last updated
exports['FiveStar-Subscribe']:CheckSubscribe(ID, SubscribeName)-- ? server side
RegisterCommand("testsub", function(source)
local src = source
local sub = exports['FiveStar-Subscribe']:CheckSubscribe(src, "Gold") -- arg 2 [Gold or Silver or Bronze] | You can only export from the server side
if type(sub) == "table" then
print("identifier: "..sub.identifier)
print("TBX code: "..sub.tbx)
print("Active: "..sub.active)
print("category: "..sub.category)
print("TimeStamp Expaire: "..sub.time)
else
TriggerClientEvent('esx:showNotification', src, 'You do not have a subscription')
end
end)