of     1   

Pans_xual
#139586840Monday, July 07, 2014 11:59 PM GMT

i'm a very very very basic scripter i know pretty much nothing i'm trying to make it so this gui text will move from one area to the other i put the script in the gui what's wrong with it? while true do wait(0.1) StarterGui.text.TextLabel.Position = {0, 0},{0, 0} wait(0.1) StarterGui.text.TextLabel.Position = {0.1, 0},{0, 0} wait(0.1) end i wake up early in the morning, and go back to sleep
Aaaboy97
#139587057Tuesday, July 08, 2014 12:01 AM GMT

There are dedicated functions for moving GUIs smoothly from one section to another. Take a look at this wiki article. http://wiki.roblox.com/index.php?title=Tween
Casualist
#139587174Tuesday, July 08, 2014 12:02 AM GMT

For the future, this kind of thread belongs in Scripting Helpers, not Scripters. You have to use the UDim2 class for GUIs while true do wait(0.1) StarterGui.text.TextLabel.Position = UDim2.new(0,0,0,0) wait(0.1) StarterGui.text.TextLabel.Position = UDim2.new(0.1,0,0,0) wait(0.1) end
Aaaboy97
#139587369Tuesday, July 08, 2014 12:04 AM GMT

@Casualist From his description, it seems like he only wants to move the GUI once. The way that the script he posted would function is essentially making the GUI shake. I think he misunderstood what a while loop does.
Pans_xual
#139587447Tuesday, July 08, 2014 12:05 AM GMT

okayy thanks i'm stilling learning and i kinda just started i wake up early in the morning, and go back to sleep
Pans_xual
#139587545Tuesday, July 08, 2014 12:06 AM GMT

welp nvm that didn't work and Aaaboy97 is right i wake up early in the morning, and go back to sleep
Aaaboy97
#139587859Tuesday, July 08, 2014 12:10 AM GMT

@FutureDope Try this snippet StarterGui.text.TextLabel:TweenPosition(UDim2.new(0.1, 0, 0, 0), 1, 3, .1)
Pans_xual
#139588839Tuesday, July 08, 2014 12:21 AM GMT

yeeeeee i'm gonna have to do this on my own sorry i posted in the wrong sub-forum i wake up early in the morning, and go back to sleep
jasondee1
#139595784Tuesday, July 08, 2014 1:29 AM GMT

Ugh, you guys didn't teach him anything. I hate the dysfunction in this community. There was nothing wrong with your script, you just forgot to identify the parameter you were using to move the GUI label. (EG: Vector3, ect). Use UDim2 for GUI's http://wiki.roblox.com/index.php?title=UDim2
jasondee1
#139595950Tuesday, July 08, 2014 1:31 AM GMT

Also, you used it in the wrong way "StarterGui.text.TextLabel.Position = {0.1, 0},{0, 0}" I'm not sure what you were trying to do here, but read up on the link I gave you
aboy5643
#139598518Tuesday, July 08, 2014 1:57 AM GMT

@Aaaboy Super OT: Remind me how I remember you... It's been so long and your username (because it's similar to mine) is strikingly familiar.
morash
#139601961Tuesday, July 08, 2014 2:31 AM GMT

Also, I wouldn't go through and directly manipulate the StarterGui since that is only replicated to the PlayerGui when they spawn.
Fluffmiceter
#139630541Tuesday, July 08, 2014 9:49 AM GMT

You should go to Scripting Helpers to receive good help!

    of     1