Hello, if you saw my other question I'm making an admin GUI (basically type the commands in a textbox)
so ya, im not that good at scripting but im trying to learn qq I'm trying to do a command like "ws me 30" but how do I get the specific number?
1 | Command.Changed:Connect( function (Change) |
2 | if Command.Text = = "ws" then -- Comand.Text is the the TextBox |
3 | game.Players.LocalPlayer.Humanoid.Walkspeed = number -- This is where I'm confused, how do I get the number from the textbox? Like if I put 30, or 60, or any number |
4 | end |
5 | end ) |
To get the values you wish to get, you can use pattern matching:
Seperate a string "ws player speed"
into {"ws","player", "speed"}
:
1 | local arguments = { } -- table to hold values. |
2 | for k in Command.Text:gmatch( "[^%s]+" ) do |
3 | arguments [ #arguments + 1 ] = k |
4 | end |
5 | -- if Command.Text == "ws me 50" then |
6 | -- the table arguments would be {"ws", "me", "50"} |
7 |
8 | -- if Command.Text == "Hello, world. This is text." then |
9 | -- thje table would be {"Hello,", "world.", "This", "is", "text."} |
The pattern "[^%s]+"
means that match a set of one one or more characters that do not include a space.
"[]"
means match any character inside this.
"^"
inside of "[]"
means match any characters BUT the following characters in these brackets.
"%s"
means space, you may also use " "
(an actual space) rather than "%s"
"+"
means match one or more of the last item (in this case, the previous item was any item that is not a space).
So, to check and see if the command entered was "ws":
01 | local arguments = { } -- table to hold values. |
02 | for k in Command.Text:gmatch( "[^%s]+" ) do |
03 | arguments [ #arguments + 1 ] = k |
04 | end |
05 |
06 | if arguments [ 1 ] = = "ws" then |
07 | if argiments [ 2 ] = = "me" then -- check if the player is performing it on themself. |
08 | local speed = tonumber (arguments [ 3 ] ) |
09 | if speed ~ = nil -- method tonumber returns nil if it cannot convert the value to a string. |
10 | game.Players.LocalPlayer.Character.Humanoid.Walkspeed = speed |
11 | end |
12 | end |
13 | end |
You can learn more about pattern matching in Lua from the official documentation: https://www.lua.org/pil/20.2.html
Use substrings. What you're doing right now is seeing if the Text == "ws." In your case, the Text is "ws me 30", not "ws".
I haven't used substrings in Lua, but I feel it would go something along the lines of
1 | if Command.Text.sub( "ws" , 1 , 2 ) then |
or something like that. Sorry If I'm not much help I haven't been on Scripting Helpers in years (I would be on Studio right now but it's not working..)
I'm not sure how to help you with the walkspeed part. It's something like that though