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:
code:
1 | script.Parent.Visible = true |
call the function
1 | script.Parent.MouseButton 1 Click: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.
1 | script.Parent.MouseButton 1 Click(THE NAME OF FUNCTION) |
or
1 | script.Parent.MouseButton 1 Click:connect( function (click) |
Your full script
1 | function Onclicked(mouse) |
3 | script.Parent.Parent.Parent.Sail.Transparency = 1 |
7 | script.Parent.MouseButton 1 Click:connect(Onclicked) |
OR
1 | script.Parent.MouseButton 1 Click:connect( function (mouse) |
3 | script.Parent.Parent.Parent.Sail.Transparency = 1 |
Both should work
any more questions? Ask me!