Skip to main content
Before checkout on our store, a dialog appears asking you to connect your Discord account. If you did this, you will receive your @VIP (customer) role automatically! If you have not received your role yet, be sure to execute the /claim command in any channel. If you connected your Discord during purchase, it will apply the role(s) automatically.

If you did not connect your Discord account during checkout, or after trying the /claim command you got a message like “There aren’t any pending purchases for you to claim” then we will have to assign your role(s) manually. To do this, open a ticket in our Discord and a member of our team will get it done for you!
If you never made a purchase on our store yet (are a new customer), then yes! We have a special discount available to all first time customers. Use the discount code WELCOME15 at checkout and you will receive 15% off any and all scripts you add to your cart! If you get an error when trying to use this coupon, it simply means you’ve used it before and it is no longer valid. This is a one-time use coupon, so use wisely!If you are an existing customer and/or have used the welcome discount already, then just check the website and/or our announcements channel in Discord for any limited-time coupons or discounts that may be available. Whenever a sale is active, it is usually prominently displayed on the website directly and posted in the announcements channel in our Discord. If you do not see anything; then it likely means there are no active sales or discounts available at this time.
While all sales are generally final through our Merchant of Record (Tebex), we understand mistakes happen. Here is how we handle accidental or duplicate purchases:
  • Duplicate Purchases: If you have accidentally purchased the same script twice, please open a support ticket immediately. While we reserve the right to deny requests for personal error, we often review these as a gesture of goodwill to ensure you aren’t paying twice for the same access.
  • Wrong Product/Accidental Purchase: These are handled at our sole discretion. Please note that refunds are typically not granted if the resource has already been transferred to another account or if the purchase was made via Cryptocurrency or a Subscription.
Important Conditions:
  • Subscriptions & Crypto: These payments are strictly non-refundable under any circumstances.
  • The 7-Day Window: Any request for a “goodwill” refund must be made within 7 days of purchase.
  • Account Verification: You must be able to verify your purchase and cooperate with our support team to be eligible for a discretionary refund.
How to request: Please reach out to our Team in Discord or via email at support@lationscripts.com. If we are unable to facilitate a refund, you may contact Tebex Limited directly via their Customer Support Form, though please be aware that Tebex does not offer refunds for digital goods.
Unfortunately, we cannot transfer assets between Cfx.re accounts. Due to the way the Cfx.re Portal and Tebex Limited ecosystem is designed, creators do not have the technical tools to revoke a license from one account and reassign it to another. Once a script is granted to a Cfx.re account, it is permanently tied to that specific identity.Key points to understand:
  • Account Responsibility: Maintaining account security and adhering to Cfx.re policies is the sole responsibility of the account holder.
  • Technical Restrictions: Because our products are delivered via the Cfx.re asset escrow system, we lack the technical capability to manage, move, or modify assets once they are delivered to a specific account.
  • Cfx.re Support: If your account has been compromised or banned, you must contact Cfx.re Support directly to attempt to recover the account.
We offer support through various channels; you can visit our Documentation site, open a support ticket in our Discord server or email us directly at support@lationscripts.com.
Absolutely, we offer a 7 day money-back guarantee in case you change your mind or something goes wrong with your purchase. All refund requests are subject to our refund terms & conditions.
We do not offer any open source versions of our scripts. All our scripts include an open source bridge that contains all framework-related events as well as an open functions file that allows you to easily customize many parts of the scripts to your needs. If you are looking for a specific section of code that isn’t available, contact our support team and we will do our best to make it available to you, if possible!
To cancel your subscription you need to navigate to the Tebex Checkout website. After logging in, simply navigate to the “Subscriptions” tab to cancel your subscription.
The TL;DR is you have a script somewhere in your server calling lib.hideTextUI() endlessly/in a loop. It’s not a super simple fix, but it is easy nonetheless. We just have to find that script! To do this, the fastest way is to follow these instructions:1. Open your entire server project in VS Code.2. Click on the “Search” icon on the left-side3. Type lib.hideTextUI() and hit enter.At this point, you will see tons of resources likely using this. You can ignore scripts like ox_lib & ox_inventory (and all Lation scripts). All the remaining scripts are possible issues. The next steps are:4. The first script you see, just stop it. Either by stop script_name in-game or using the txAdmin resource list to stop it.5. Once stopped, test doing whatever it was you were doing that was having a flashing/flickering TextUI.6. If it still flashes/flickers; that wasn’t the bad script. Find the next script in the VS Code list, and stop that second one.You will do this one-by-one; stopping a script, test in-game, stopping the next one, test in game - over and over until eventually the TextUI will stop flickering/flashing. When it does, take note of the last script you stopped. That will be the problematic script.Once identified, you can either remove that script or contact whoever the creator is and ask them to please stop putting lib.hideTextUI() in an endless loop, haha - this is quite a common issue we see, and it’s unfortunately out of our control. But this process will at least help you identify the problematic script and then you can decide what action to take after that.