ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script 📌
805 Views

Universal script translator

Universal Script 📌Uploaded by
2 months ago
Please login to perform these actions:

Description

======================= 🌐 Universal script translator 🌐 Hello script devs! :D Today I'm sharing my universal automatic script translation code. I use it in all my major projects, and today I decided to make it public so that everyone can use it too. This code detects the player's language and automatically translates the text in a table. All you need to do is set your texts to ENGLISH in the "Translations" table. After that, simply use it in all text definitions in your script.

View Raw
Edited By: Termux_404 Download


Comments
4
User profile picture
2kr3kn 1 month ago
Is it better to make a single request instead of four? For instance, by concatenating them using a separator character—say, "#": n = "text1" n2 = "test" s = n .. "#" .. n2 This allows you to bundle the requests; the processing thread splits into sub-threads, making the operation faster—much faster than executing individual requests.
2kr3kn's profile picture2kr3knIs it better to make a single request instead of f...
User profile picture
2kr3kn 1 month ago
Google translates slowly, and making a large number of requests is very costly; you can use other translation services instead.
2kr3kn's profile picture2kr3knGoogle translates slowly, and making a large numbe...
User profile picture
breezipsettings 1 month ago
@2kr3kn Dude, are you talking to your self?
breezipsettings's profile picturebreezipsettings@2kr3kn Dude, are you talking to your self?
User profile picture
2kr3kn 1 month ago
@breezipsettings Twitter habit
Please Login to add a comment.