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

Help With Button Script?

Asked by 9 years ago

i wanted the sail of my sailboat to apare on a click of a button something went wrong help me

1function Onclicked(mouse)
2    script.Parent.mouseButton1click = script.Parent.Parent.Parent.Sail.Transparency = 1
3    end
4    Onclicked (mouse)

2 answers

Log in to vote
1
Answered by
Reselim 35
9 years ago

You'd have to rewrite the button's script:

1function Onclicked(mouse)
2 
3    script.Parent.Parent.Parent.Sail.Transparency = 1
4 
5end
6 
7script.Parent.MouseButton1Click:connect(Onclicked)

Basically, you'd connect the MouseButton1Click's part of the TextButton or ImageButton to a function, in which the function would be called every time the button is pressed.

0
Explain the code, it does not benefit the Asker by just pasting code. M39a9am3R 3210 — 9y
Ad
Log in to vote
1
Answered by 9 years ago

So that answer that Reselim did is correct, but he didn't explain lemme explain for you. When you write functions you ALWAYS need to call it or else it won't work! heres an example for a simple button script.

function:

1function click()

code:

1script.Parent.Visible = true

call the function

1script.Parent.MouseButton1Click:connect(click)

as you see I put click in the parenthese. This means that you are talking about this function!

But there is two ways to call it 1.

1script.Parent.MouseButton1Click(THE NAME OF FUNCTION)

or

1script.Parent.MouseButton1Click:connect(function(click)

Your full script

1function Onclicked(mouse)
2 
3    script.Parent.Parent.Parent.Sail.Transparency = 1
4 
5end
6 
7script.Parent.MouseButton1Click:connect(Onclicked)

OR

1script.Parent.MouseButton1Click:connect(function(mouse)
2 
3    script.Parent.Parent.Parent.Sail.Transparency = 1
4 
5end

Both should work any more questions? Ask me!

0
Way better than mine. Reselim 35 — 9y

Answer this question