I solved this by checking (on the second function) whether the position was at a Y-Scale coordinate of 400. Thanks to all those who replied.
When I run this, saying "commands" makes the GUIs move out of their position, and saying "commands off" moves them back. If I say "commands" again, the GUIs do not move back to their position. How do I make it move back on saying "commands" again? --Edit, I need this to work only for my character, and it'd be more efficient if I could do it with the same command.
To test it: https://www.roblox.com/games/862131713/Empty-Lot
01 | wait( 3 ) |
02 | for i, v in pairs (game.Players:GetPlayers()) do |
03 | --if v.Character.Name == "Sabaist" then |
04 | v.Chatted:connect( function (msg) |
05 | if msg = = "Commands" or "commands" then |
06 | for s, h in pairs (script.Parent:GetChildren()) do |
07 | toggle = true |
08 | if h:IsA( "TextBox" ) and toggle = = true then |
09 | local const = h.Position.Y.Offset |
10 | h:TweenPosition(UDim 2. new( 0 , 400 , 0 , const), 'In' , 'Bounce' , 3 ) |
11 | toggle = true |
12 | end |
13 | end |
14 | end |
15 | end ) |
Forgive me if I'm wrong (it's been a long day) but I'm pretty sure this script only runs once which would be why it doesn't work as you expect. You'd want to put the two parts of the script you have into functions that call when ever the specific word has been said...
I'll give an example and you can modify as you wish:
01 | game.Players.PlayerAdded:connect( function (player) |
02 | player.Chatted:connect( function (msg) |
03 | if player.Name = = "Sabaist" then |
04 | if msg = = "Commands" then |
05 | for s, h in pairs (script.Parent:GetChildren()) do |
06 | toggle = true |
07 | if h:IsA( "TextBox" ) and toggle = = true then |
08 | local const = h.Position.Y.Offset |
09 | h:TweenPosition(UDim 2. new( 0 , 400 , 0 , const), 'In' , 'Bounce' , 3 ) |
10 | toggle = true |
11 | end |
12 | end |
13 | end |
14 | end ) |
15 | end ) |
This may or may not work, I haven't tested it.. Reference was taken from here should you want more information
Please accept my answer should this be the working solution!
Feel free to ask any questions about the code and let me know if it doesn't work, I'll see if I can fix it :)