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

Making a GUI move when your mouse hovers over it issues? [closed]

Asked by
Bman8765 270 Moderation Voter
10 years ago

Hi there, I'm currently working on a localscript which handles a large variety of features when handling the "Main GUI' for the game. Here is what the script should be doing, it should be moving a GUI button a tiny bit whenever the user moves his mouse over the button but it should then go back to the original position after the user's mouse leaves the area. I have 2 buttons that do this and every once and a while the buttons will mess up or error forgetting to go back or completely fly off the screen. It works fine if you are a gentle grandma learning how to use the internet but if you are a crazy kid (the entire roblox population pretty much) I could easily see this becoming an issue which is why I need suggestions on how to do it.

Below is the code (inside a localscript), this is not the entire script but it is all that you need to solve this problem. joinGame variable and customizeCharacter variable are both defined and located at the top of the script (not shown below) and work just fine so it is not a problem with the declaration of the textbuttons

001--Variables below--
002movingatm = false
003joinGameOut = false
004customizeCharacterOut = false
005 
006--joinGame button events below--
007 
008function clickedjoinGame()
009    --Add joining and info here ;D
010end
011 
012function enteredjoinGame()
013    if joinGameOut == true then
014        return;
015    end
View all 103 lines...
0
Look up tweening in the wiki. EzraNehemiah_TF2 3552 — 10y
0
WOw that seems really interesting, I'm going to experiment with it now and I'll come back if I find a better working version Bman8765 270 — 10y

Locked by BlueTaslem

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

1 answer

Log in to vote
2
Answered by
Bman8765 270 Moderation Voter
10 years ago

Thanks to @LordDragonZord I realized a much easier way to manage this, tweening (found here http://wiki.roblox.com/index.php?title=API:Class/GuiObject/TweenPosition ) Here is a small explain of how I changed it:

BEFORE:

01function enteredjoinGame()
02    if joinGameOut == true then
03        return;
04    end
05 
06    if movingatm == true then
07        repeat wait() until movingatm == false
08    end
09    movingatm = true
10    joinGameOut = true
11    for xmove = 1,10 do
12 
13        joinGame.Position = joinGame.Position + UDim2.new(0.001,0,0,0)     
14 
15        game:GetService("RunService").RenderStepped:wait()
View all 39 lines...

AFTER:

1function enteredjoinGame()
2    joinGame:TweenPosition(UDim2.new(.03, 0, 0.15, 0), "Out", "Quad", .1, true)
3end
4 
5function leftjoinGame()
6    joinGame:TweenPosition(UDim2.new(-.005, 0, 0.15, 0), "Out", "Quad", .1, true)
7end
0
Do not write an answer on your own post. FearMeIAmLag 1161 — 10y
Ad