I have made a command called setspeed (-100-100) and It looks ugly showing in chat... is there anyway to make it work with a / in front of it ex. /setspeed
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
addhook("say","speedchanger") function speedchanger(id,message) checkSay = string.sub(message, 1, 8 ) if checkSay=="setspeed" then newSpeed = string.sub(message, 9, 13) parse("speedmod "..id..newSpeed) end end