Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does tweening this GUI only work once on both commands? [SOLVED]

Asked by 7 years ago
Edited 7 years ago

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

01wait(3)
02for 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(UDim2.new(0, 400, 0, const), 'In', 'Bounce', 3)
11                    toggle = true
12                end
13                end
14            end
15            end)
View all 31 lines...
0
Updated my answer including the edits from your comment Uroxus 350 — 7y

1 answer

Log in to vote
0
Answered by
Uroxus 350 Moderation Voter
7 years ago
Edited 7 years ago

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:

01game.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(UDim2.new(0, 400, 0, const), 'In', 'Bounce', 3)
10                    toggle = true
11                end
12            end
13        end
14    end)
15end)

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 :)

0
Yes this is correct, you must get ALL players that join. By using a table at the start will only get the first player who joins since the script is only being ran once. Though, it should be working for that one person if it has worked the first time PreciseLogic 271 — 7y
0
I forgot to mention that I need this to only work for one person in the game. How would I go about opening and closing the GUIs with only one command? I replaced the first line in Uroxus' example with ~~~~~~~~for i, v in pairs(game.Players:GetPlayers()) do if v.Character.Name == "Sabaist" then~~~~~~~~ Thanks. MaleficusFreud 7 — 7y
Ad

Answer this question