Posted
im working on a roblox exploit and i want to add custom commands
Replied
You can set up a switch statement in the button fire event:
switch (textBox1.Text){
case "dosomething":
api.SendLuaScript("print('ok')");
break;
default: // if nothing matches it
api.SendCommand(textBox1.text);
break;
}
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post