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

How would I make my ScreeGuis interactive?

Asked by 9 years ago

So, I am try to make a computer. I have built the computer itself, but I want to make the screen Guis actually do something. And I am nearly clueless on how to script ever since LuaLearners stopped.

2 answers

Log in to vote
1
Answered by 9 years ago

Scripting Helpers is a place to help people fix broken scripts and/or help them out with it, just for future reference so you know.

You can learn about Screen Gui's at the Roblox Wiki, along with hundreds of other things, you should check it out.

Here you go:

http://wiki.roblox.com/index.php?title=Beginner%27s_GUI_Tutorial

0
I am not asking you to make the script. I just don't understand how I would do it. iPrepared 30 — 9y
0
I apologize, how about you add me to a party and we;ll talk about getting you started? superroboraul 15 — 9y
0
Ok, But I may have found my solution. But if nothing happens I will party you iPrepared 30 — 9y
Ad
Log in to vote
0
Answered by
Redbullusa 1580 Moderation Voter
9 years ago

Use input objects ("TextButton" or "ImageButton") for click inputs, use "ScrollingFrame" to have your frame scroll up or down.

TextButton Input Format

Function

function Click(--[[YourArgumentHere]])
    --[[YourStatementHere]]
end

script.Parent.TextButton.MouseButton1Click:connect(Click)

Anonymous Function

script.Parent.TextButton.MouseButton1Click:connect(function (--[[YourArgumentHere]])
    --[[YourStatementHere]]
end

Refer to here if you want to change your Events, edit their properties in-game, etc.

Refer to here if you want to learn more about how to manipulate GUIs.

Answer this question