Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 897 Bytes

File metadata and controls

31 lines (23 loc) · 897 Bytes

Client Commands

Client Commands is a Client Side for Roblox Script. Based from the Basic and 7 Utilities Commands.

Image

Current Prefix: '.help'

How to evaluate with my Client Side Executor?

To Evaluate with your Client Side Executor, Follow the steps:

  1. Ensure you have executor client side for localscript.
  2. Inject your Roblox Game.
  3. Use the Example Usage:
print()
local success, result = pcall(function() -- This is the PCall to prevent Fallback.
    loadstring(game:HttpGet("https://raw.githubusercontent.com/SkunkPlatform-Team/ClientCommands/refs/heads/main/Main.txt"))() -- Evaluate with loadstring.
end)

if not success then
    warn("Error loading script: " .. result) -- This will show a Fallback Error.
end
  1. Inject the Roblox Game to read example.
  2. Execute your Client Side Executor.

That all for this Example Usage!