Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 775 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 775 Bytes

Syntax Highlighting

A module originally found on the Devforum, ported to support exploit needs using loadstring() instead of require.

Usage

Importing the library

local module = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/hello-n-bye/textbox-syntax/main/highlighter.lua"))()

Applying to a TextBox

local module = loadstring(game:HttpGetAsync("..."))() -- Replace the url with the correct one.

module.highlight({
  textObject = script.Parent -- A LocalScript inside of your TextBox
})

Proper Credits

Checkout the original author's repository here.

Original code by BoatBomber, ported to exploits by me.