of     1   

bunnybunn264
#36792282Wednesday, November 10, 2010 10:04 AM GMT

I have some basic experience with GUI's(made a Reset tool), so, more than anything else, I wanna know how to have a TextBox or whatever ONLY shows, so I can show the time of day, according to the variable in the Lighting. I have a Day/Night Cycle script. That's why. My Place is Can You Climb The Epic 2,000-Foot-Tall Ladder??, in case that helps. Please respond quickly, gotta be ready for the contest! Thanks! My very first forum post :D!
ducobu123
#36792471Wednesday, November 10, 2010 11:13 AM GMT

well that don't help me because i know that
bunnybunn264
#36833756Thursday, November 11, 2010 7:15 AM GMT

Bump. As some extra information, I REALLY need to know. It might be helpful if you just tell me how to include variables in hints and messages too... And I want a DIGITAL clock, that matches the TimeOfDay in the lighting. PLEASE HELP!!!
Spikexp
#36833797Thursday, November 11, 2010 7:19 AM GMT

script.Parent.Text=game.Lighting.TimeOfDay ? Is that what you mean? Because what I read made no sense...
bloob827
#36833799Thursday, November 11, 2010 7:19 AM GMT

Make a GUI put a script in it script : while wait(.1) do script.Parent.Text = "Server Clock : " ..game.Lighting.TimeOfDay.. end
bunnybunn264
#36881760Friday, November 12, 2010 1:57 PM GMT

Thank you very much!! I have one last thing I need to know, but I don't know if I should start a new thread for it... I would also like an altimeter, so people can see how high they are. It would be nice if that could be a GUI, or if it could be on a leaderboard or something, or even in a hint at the bottom... Like, the Y value of the player's torso? Is it done the same way as the lighting? Anyways, I'm gonna go try your script now. I'll tell you if it works.
bunnybunn264
#36882271Friday, November 12, 2010 2:39 PM GMT

Okay... So I went and tried it... It works great!! Just one tiny little problem... When you click it, it gets that little flashy line and you can type in it?? How do I fix that?? You can go to my Place and see for yourself if you like... Please help... I don't like that part!!
arundel
#36882495Friday, November 12, 2010 2:53 PM GMT

Have you used an TextLabel, TextBox or TextButton..?
bunnybunn264
#36897332Friday, November 12, 2010 10:21 PM GMT

Textbox.
kikaro11
#36897536Friday, November 12, 2010 10:25 PM GMT

while true do Y = script.Parent.Parent.Parent.Character.Torso.Position.Y script.Parent.Text = "Altitude : " ..Y.. wait() end Try this, I never use GUI's btw.
aase69
#36897560Friday, November 12, 2010 10:25 PM GMT

Use TextLabel instead. TextBoxes are used to write in.
bunnybunn264
#36956964Saturday, November 13, 2010 10:16 PM GMT

Ok... I'll try.
bunnybunn264
#36957942Saturday, November 13, 2010 10:30 PM GMT

The altimeter doesn't exactly work. It only shows what I put in the text... It won't change to show the altitude... What's wrong?
crazypotato4
#36958041Saturday, November 13, 2010 10:32 PM GMT

while true do pcall(function() script.Parent.Text = tostring(script.Parent.Parent.Parent.Character.Position.Y) end) wait(0.1) end
bunnybunn264
#36989545Sunday, November 14, 2010 11:27 AM GMT

while true do call(function()script.Parent.Text = tostring(script.Parent.Parent.Parent.Character.Position.Y) end) wait(1) end ...did not work. What is WRONG??

    of     1