Jump to content

Search the Community

Showing results for 'Huawei mate 10'.

  • Search By Tags

    Type tags separated by commas.
    For example, the common name of the game: PUBG, Free Fire, Rules of Survival, Critical Ops, Mobile Legends: Bang Bang, etc.
  • Search By Author

Content Type


Forums

  • GameGuardian
    • Requests
    • Help
    • Guides
    • Cheats
    • Video Tutorials
    • Unintended Effects
  • General
    • General Discussion
    • Introduce yourself (:
    • Announcements
    • Website suggestions/Bugs
  • Downloads Support
    • Apps
    • LUA scripts
  • Online Multiplayer Mods
    • Altering Online Games with Gameguardian
    • Download Mods
  • Other Hacks
    • Tutorials
    • Non-GameGuardian
  • Archive
    • Archived topics

Categories

  • Official Downloads
  • Virtual spaces (no root)
  • LUA scripts
    • Forward Assault
    • Free Fire
    • PUBG
    • Rules of Survival
    • Templates
    • Tools
  • Test applications
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Device


Discord ID

  1. View File Unicode Font Factory By BadCase This script is for other script authors to use in order to have custom Unicode based "fonts" in their scripts. This script allows you to: Convert plain text strings to Unicode fonts. Export LUA code to use a font in your script. Customize font settings like letter spacing, word spacing and adding letter and word brackets. Create your own custom fonts from scratch. Modify the included fonts. The script itself can also be included in your script to use multiple fonts in one script and use random fonts. ----------------------------------------- --Usage for exported lua-- ----------------------------------------- --Remove the gg.alert() from the end of exported file then copy --and paste the code to the top of your script --wrap any text you want to style like this --style_text("Your text string") ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------- --Usage When Including The Entire Script-- ------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --style_text(string,style,letter_wrap,word_wrap,letter_space,word_space,letter_wrap_space,word_wrap_space) -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --parameters: -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- ----string (Required): The string of text to style. --Example: "Your string of text" -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- ----style (Optional): The style table name or the style_array index number to convert text to. --Example 1 Table Name: style_sans_serif_bold --Example 2 style_array Index: 4 --Using either of the above for the style parameter will yeild the same result --Returns random style if nil. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --letter_wrap (Optional but Requires all other parameters): The wraps_array index for the bracket style you wish to wrap Letters in. --Example: 7 --Sets letter brackets style to ⦃L⦄⦃e⦄⦃t⦄⦃t⦄⦃e⦄⦃r⦄⦃s⦄ --Set to 1 for no letter brackets --Set word_wrap to 1 if using this -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --word_wrap (Optional but Requires all other parameters): The wraps_array index for the bracket style you wish to wrap Words in. --Example: 7 --Sets word bracket style to ⦃Word⦄ --Set to 1 for no word brackets --Set letter_wrap to 1 if using this -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --letter_space (Optional but Requires all other parameters): The space between letters in Narrow No-Break Spaces. --Range 0-10 --Example: 2 --Sets letters T  H  I  S far apart. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --word_space (Optional but Requires all other parameters): The space between word in Hair Spaces. --Range 0-20 --Example: 10 --Sets          words          this          far          apart. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --letter_wrap_space (Optional but Requires all other parameters): The space between brackets and Letters in Narrow No-Break Spaces. --Range 0-10 --Example: 1 --Sets this much space betwean ⦃ L ⦄⦃ e ⦄⦃ t ⦄⦃ t ⦄⦃ e ⦄⦃ r ⦄⦃ s ⦄ and brackets. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- ----word_wrap_space (Optional but Requires all other parameters): The space between brackets and Words in Narrow No-Break Spaces. --Range 0-10 --Example: 2 --Sets this much space between ⦃ Words ⦄ and brackets. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --Usage example with style_array index specified --------------------------------------------------------------------------------- --style_text("Your string of text",3) --Result --𝒀𝒐𝒖𝒓 𝒔𝒕𝒓𝒊𝒏𝒈 𝒐𝒇 𝒕𝒆𝒙𝒕 --------------------------------------------------------------------------------- --Usage example with style table name specified --------------------------------------------------------------------------------- --style_text("Your string of text",style_x_4) --Result --𝗬𝗼𝘂𝗿 𝘀𝘁𝗿𝗶𝗻𝗴 𝗼𝗳 𝘁𝗲𝘅𝘁 --------------------------------------------------------------------------------- --Usage example with all parameters specified --------------------------------------------------------------------------------- --style_text("Your string of text",4,1,4,1,10,0,3) --Result --⦗   𝗬 𝗼 𝘂 𝗿   ⦘          ⦗   𝘀 𝘁 𝗿 𝗶 𝗻 𝗴   ⦘          ⦗   𝗼 𝗳   ⦘          ⦗   𝘁 𝗲 𝘅 𝘁   ⦘ ------------------------------------------------------ --Usage example with random style ------------------------------------------------------ ----style_text("Your string of text") --Result --Random style Submitter BadCase Submitted 10/27/2020 Category Tools  
  2. Version 1.3.5

    970 downloads

    This script is for other script authors to use in order to have custom Unicode based "fonts" in their scripts. This script allows you to: Convert plain text strings to Unicode fonts. Export LUA code to use a font in your script. Customize font settings like letter spacing, word spacing and adding letter and word brackets. Create your own custom fonts from scratch. Modify the included fonts. The script itself can also be included in your script to use multiple fonts in one script and use random fonts. ----------------------------------------- --Usage for exported lua-- ----------------------------------------- --Remove the gg.alert() from the end of exported file then copy --and paste the code to the top of your script --wrap any text you want to style like this --style_text("Your text string") ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------- --Usage When Including The Entire Script-- ------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --style_text(string,style,letter_wrap,word_wrap,letter_space,word_space,letter_wrap_space,word_wrap_space) -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --parameters: -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- ----string (Required): The string of text to style. --Example: "Your string of text" -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- ----style (Optional): The style table name or the style_array index number to convert text to. --Example 1 Table Name: style_sans_serif_bold --Example 2 style_array Index: 4 --Using either of the above for the style parameter will yeild the same result --Returns random style if nil. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --letter_wrap (Optional but Requires all other parameters): The wraps_array index for the bracket style you wish to wrap Letters in. --Example: 7 --Sets letter brackets style to ⦃L⦄⦃e⦄⦃t⦄⦃t⦄⦃e⦄⦃r⦄⦃s⦄ --Set to 1 for no letter brackets --Set word_wrap to 1 if using this -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --word_wrap (Optional but Requires all other parameters): The wraps_array index for the bracket style you wish to wrap Words in. --Example: 7 --Sets word bracket style to ⦃Word⦄ --Set to 1 for no word brackets --Set letter_wrap to 1 if using this -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --letter_space (Optional but Requires all other parameters): The space between letters in Narrow No-Break Spaces. --Range 0-10 --Example: 2 --Sets letters T  H  I  S far apart. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --word_space (Optional but Requires all other parameters): The space between word in Hair Spaces. --Range 0-20 --Example: 10 --Sets          words          this          far          apart. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --letter_wrap_space (Optional but Requires all other parameters): The space between brackets and Letters in Narrow No-Break Spaces. --Range 0-10 --Example: 1 --Sets this much space betwean ⦃ L ⦄⦃ e ⦄⦃ t ⦄⦃ t ⦄⦃ e ⦄⦃ r ⦄⦃ s ⦄ and brackets. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- ----word_wrap_space (Optional but Requires all other parameters): The space between brackets and Words in Narrow No-Break Spaces. --Range 0-10 --Example: 2 --Sets this much space between ⦃ Words ⦄ and brackets. -------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --Usage example with style_array index specified --------------------------------------------------------------------------------- --style_text("Your string of text",3) --Result --𝒀𝒐𝒖𝒓 𝒔𝒕𝒓𝒊𝒏𝒈 𝒐𝒇 𝒕𝒆𝒙𝒕 --------------------------------------------------------------------------------- --Usage example with style table name specified --------------------------------------------------------------------------------- --style_text("Your string of text",style_x_4) --Result --𝗬𝗼𝘂𝗿 𝘀𝘁𝗿𝗶𝗻𝗴 𝗼𝗳 𝘁𝗲𝘅𝘁 --------------------------------------------------------------------------------- --Usage example with all parameters specified --------------------------------------------------------------------------------- --style_text("Your string of text",4,1,4,1,10,0,3) --Result --⦗   𝗬 𝗼 𝘂 𝗿   ⦘          ⦗   𝘀 𝘁 𝗿 𝗶 𝗻 𝗴   ⦘          ⦗   𝗼 𝗳   ⦘          ⦗   𝘁 𝗲 𝘅 𝘁   ⦘ ------------------------------------------------------ --Usage example with random style ------------------------------------------------------ ----style_text("Your string of text") --Result --Random style
  3. View File Real Racing 3 (12.1.2) Car Upgrader REAL RACING 3 CAR UPGRADER Working RR3 version: 12.0.1 Current version: 12.0.1.5.4 Description: Upgrade, repair and vip all cars (it does not work for cars using setup/drivers/principal upgrade system) without spend currencies. Instructions: See the script Known issues: Works only for cars that have not setup/drivers upgrades. Video: https://rumble.com/vw48ft-real-racing-3-10.2.0-car-upgrader-new.html Submitter MarioRossi93i Submitted 10/21/2020 Category LUA scripts  
  4. View File [KALxPRO¹] Public bypass Public bypass script for global version pubg, more effective on VN version, follow us to get more scripts like this Submitter MrHacker12 Submitted 10/19/2020 Category PUBG  
  5. View File SCRIPT ROBLOX ADMIN Youtube: VENEGAS YT MODS Submitter venegasytmods Submitted 10/19/2020 Category LUA scripts  
  6. View File Stickman Dismounting Script V1 PLS read Instructions before using sorry for the bugs its my First script Comment if you found a bug Submitter SzzTiger Submitted 10/18/2020 Category LUA scripts  
  7. View File Free Fire 1.54.2 Hack Script All's Hack Available On My Youtube Channel. Submitter HackKarlo Submitted 10/18/2020 Category Free Fire  
  8. View File LOL hack op brutal hacks this is vip paid file made by me with 60% brutal hacks, want more like this joint our telegram channel: LOL HACK OP FEATURES:- 1: clear logs 2:magic bullet 3: no recoil 4:high jump 5:long jump etc ,etc.................. Submitter MrHacker12 Submitted 10/18/2020 Category PUBG  
  9. View File The Tiger(gold and gems hack script) I have created a simple script for gold and gem hack.(only 64bit) Script do so fast. Try tested it and enjoy! Don't forget to report the problems of script and recommend. So only that i can improve the script in future. Submitter Lover1500 Submitted 10/18/2020 Category LUA scripts ko.mp4 2020_10_18_07_07_36.mp4
  10. View File Pixel Gun 3D Trainer Please do not beg for more mods this is what you are going to get. YOU NEED ROOT, CUBIC GAMES BLOCKS VIRTUAL SPACES What's in this? -Vip -Ammo -Damage -Godmode -Hitbox The hitbox is setup as a saved list, this only works for players who have 64bit devices sorry. https://www.mediafire.com/file/u9t2yfy8lhzxuzq/PGTrainer.lua/file Credit goes to Poggersbutnot, you can sub to him here https://www.youtube.com/channel/UCoB3iltMyDI7UCm7Qgs181g Submitter Fevirre Submitted 10/17/2020 Category LUA scripts  
  11. View File No CD hack - All characters. Amber damage multiple Genshin Impact No CD hack for all characters, just need to run one times. Don't use multiple damage in Multiplayer/Abyss mode or you'll got ban. Password (if any): 123 Language: VN/EN Please keep the name of the file. Credit by me: TekMonts - GG Required GG 100, not tested on lower version yet. Please review the script. If positive review, I will update more stub. Use at your all risk. Submitter TekMonts Submitted 10/17/2020 Category LUA scripts  
    (Google play service, Gmail problem solving, Parallel space.) Hello everyone! After the last android security update, for example, a Google play service bug when using a Huawei p20 eml-l29 can be resolved. For me, this is resolved: First, delete the last Google play service update, if possible. Once you have it, download Aptoid. application, install and add it to the parallel space. There, launch the parallel space from inside and the Aptoid app will ab search for it on the Google play service. Update it! Then restart the parallel space, add it to the Gmail app test, launch it, sign in. Then the game that was problematic until then will work. For me, it has worked 100%.
  12. I used pointers. Idont understand well what you want to. The script will automatically copy the address of zero what you want. You can go to address. growpia.lua Screenrecorder-2020-10-17-19-09-40-860.mp4
  13. View File Mine_Breaker.V2 ___OLD STEPS FOR MODS_____ For god mode set health at 155 For no hunger or thirst or ***** set it at 150 Gem mod will crash your game just reopen it the gems will stay I will up date this soon This script is for mine survival Submitter Blackwatch69 Submitted 10/16/2020 Category LUA scripts  
  14. View File Sandbox 3D Unlimited HP and More! Unlimited HP, Rapid Fire, Giant Barrels, Fly Hack, Speed Hack, Super Jump, Antenna, etc. Made by Gannon Riley. Youtube: Gannon Riley Submitter GannonRiley Submitted 10/15/2020 Category LUA scripts  
  15. View File Script Roblox Game Guardian SUBSCRIBE YOU YOUTUBE: ModsLua THANKS Submitter ModsLuaYT Submitted 10/15/2020 Category LUA scripts  
  16. View File My collection of scripts This is my collection of scripts for certain versions of games. Currently, the collection includes: otherworld legends, evil lands, etc. Submitter Kruvcraft Submitted 10/14/2020 Category LUA scripts  
  17. View File RADAR HACK MLBB Activate Radar Map ingame And Drone Fitur •Radar Map •Drone view •Unlock All Skin https://t.me/alivehun Submitter LEVISCRIPT Submitted 10/09/2020 Category LUA scripts  
  18. View File Script Minecraft Pe Game Guardian USUARIO:MINECRAFT CONTRASEÑA:V1 SUBSCRIBE YOU Youtube: ModsLua Submitter ModsLuaYT Submitted 10/09/2020 Category LUA scripts  
  19. View File BURRITO BISON A simple script for Burrito Bison to get - Coins/Money in Upgrade Shop. How to use : https://streamable.com/rqw1io Submitter MonkeySAN Submitted 10/09/2020 Category LUA scripts  
  20. View File ONLY BYPASS.Enc.lua This is just a bypass Activate in the lobby And use your own hack This is for global only Expired October 11 2020 Submitter LEVISCRIPT Submitted 10/08/2020 Category PUBG  
  21. Blez

    Prompt Menu

    View File Prompt Menu Simple Prompt Menu Submitter Blez Submitted 10/07/2020 Category Templates  
  22. View File KARATE KING SCRIPT MONEY HACK KUNG FU FIGHTING GAMES & OFFLINE KARATE KING OFFER REAL NINJA COMBAT & ATTACK GAMING EXPERIENCE WITH BLOOD PUMPING SHADOW KARATE ULTIMATE CHALLENGES. PLAY THE HARDEST OF REAL ANIME GAMES AGAINST WORLD CHAMPION PRO LEGENDS. SUPER KUNG FU SHADOW KARATE GAMES 3D IS A KUNG FU KARATE GAME READY FOR MODERN FIGHTING SPORTS LOVERS. ARE YOU PROFESSIONAL ENOUGH TO CONTROL A GIANT CHAMPION IN THIS BOXING GAME? ULTIMATE DRAGON KUNG FU CHAMPION IS AN EXCITING ARCADE ULTIMATE ACTION GAME. IT IS THE ADVENTURE ARCADE GAMES OFFLINE TO ENJOY DRAGON FIGHTING KARATE AND SUPER KUNG FU GAME. DRAGON KARATE LOVERS WILL ENJOY THE BEST 3D GAMING EXPERIENCE. TROPHIES ARE FOR WINNERS OF DRAGON KARATE CHAMPIONS. LUA OPEN SOURCE: CLICK ME GAME LINK: CLICK ME IF YOU TEST THE SCRIPT, PLEASE COME BACK HERE AND LEAVE A COMMENT OR LIKE IT! Submitter Collen Submitted 10/05/2020 Category LUA scripts  
  23. View File Among Us Lua Here is my first script for among us game. Script isnt perfect. But I want you to try it cuz I use pointers in it. Super fast! In this script, -You can be crew even if you are imp. -You can be always imp if you are host. If you're not host you can only do sabotage. Kills will be only for your visions. They are not die really. (Can see other imps) -You can walk through walls. -For vision,you can see everything clearly in your range. (Even other side of walls) Please let me know errors of this script and recommend new features of hacks. Use only virtual exposed 32 bit or script wont work properly. Submitter Lover1500 Submitted 10/02/2020 Category LUA scripts  
  24. View File Aap Ki TECH Antiban Hack Script All Antiban, Anti Cheat On My Youtube Channel, Visit My Channel And Subscribe Us... Submitter HackKarlo Submitted 10/02/2020 Category PUBG  
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.