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

Why Doesnt my Visible/Not Visible Script work? [SOLVED]

Asked by
istiyak 13
11 years ago

i made a script so that if you join a clan for example heroes, you get a certain GUI shop only available for the people that clicked on the text button Heroes. but if you joined the clan for example Enemies, you get access to the shop that is only available to enemies. i made 2 shops for each of them. called the hero one Hero Shop and enemies one Enemyshop. Also help me on line 4...

01--I AM A NOOB AT SCRIPTING
02function onclicked()
03    Intro.Frame.Uzumaki --- Actually Heroes so Intro.Frame.Heroes
04    if = clicked(function) ---- Please explain why this is wrong or has a red line beneath it
05        Uzumakishop.visible = true
06        or if clicked.Uchiha ---Actually Enemies so if clicked.Enemies
07            Uzumakishop.visible = false
08        end
09    end
10    end
11 
12     function onclicked()
13        Intro.Frame.Uchiha
14        if = clicked(function) ---- Why Doesnt This Have a Line Benteath it?
15        Uchihashop.visible = true
View all 21 lines...

but i improved my script!

01function onclicked()
02    if onclicked() then Intro.Frame.Uzumaki --- Actually Heroes so Intro.Frame.Heroes
03     =button.MouseButton1Down:connect(onclicked)
04          Uzumakishop.Visible = true
05        if clicked.Uchiha ---Actually Enemies so if clicked.Enemies
06            then Uzumakishop.Visible = false
07    end
08    end
09    end
10 
11     function onclicked()
12        if onclicked() then Intro.Frame.Uchiha
13        =button.MouseButton1Down:connect(onclicked)
14        Uchihashop.Visible = true
15        if clicked.Uchiha
16            then Uzumakishop.Visible = false
17        end
18        end
19        end

4 answers

Log in to vote
0
Answered by 11 years ago
1if = clicked(function)

wouldn't make any sense because when using click you do

1button.MouseButton1Down:connect(function()
2 
3end)

and if statements

1if 5 > 3 then
2    print("5 is greater than 3!")
3end

If you wanted to make that work there'd have to be a lot more scripting put into that

0
why should i use if statements istiyak 13 — 11y
0
What? VariadicFunction 335 — 11y
0
you said i could use if statments, but i dont get if statements also i dont understand button.MouseButton1Down:connect(function() as i told you in the script... i am a noob at scripting istiyak 13 — 11y
0
You'd pretty much have to re-create everything and I don't really want to make everything for you but if you don't understand that stuff then you won't be able to make it at your current level of understanding VariadicFunction 335 — 11y
0
well you helped a lot istiyak 13 — 7y
Ad
Log in to vote
0
Answered by 11 years ago

If has to have == and then.

so it will look like this

1if Whatever == whatever then
2      -- Code Here
3 
4end
0
so in whatever i put clicked so, if clicked == uzumaki then... my code. is that what you mean? istiyak 13 — 11y
0
Probably if MouseButton1click == true then digitalzer3 123 — 11y
Log in to vote
0
Answered by 11 years ago

Put:

1button.MouseButton1Down:connect(onclicked)
0
didnt work istiyak 13 — 11y
0
Then put script.Parent.MouseButton1Down:connect(onclicked) --Replace onclicked with the function It says onclicked on the thing at top so thats what I put. fireboltofdeath 635 — 11y
Log in to vote
0
Answered by
istiyak 13
11 years ago

i fixed the script! i edited the script on the description.

Answer this question