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 |
02 | function 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 |
but i improved my script!
01 | function onclicked() |
02 | if onclicked() then Intro.Frame.Uzumaki --- Actually Heroes so Intro.Frame.Heroes |
03 | = button.MouseButton 1 Down: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.MouseButton 1 Down:connect(onclicked) |
14 | Uchihashop.Visible = true |
15 | if clicked.Uchiha |
16 | then Uzumakishop.Visible = false |
17 | end |
18 | end |
19 | end |
1 | if = clicked( function ) |
wouldn't make any sense because when using click you do
1 | button.MouseButton 1 Down:connect( function () |
2 |
3 | end ) |
and if statements
1 | if 5 > 3 then |
2 | print ( "5 is greater than 3!" ) |
3 | end |
If you wanted to make that work there'd have to be a lot more scripting put into that
If has to have == and then.
so it will look like this
1 | if Whatever = = whatever then |
2 | -- Code Here |
3 |
4 | end |
Put:
1 | button.MouseButton 1 Down:connect(onclicked) |