Just checking.
01 | H = game.Workspace.Part |
02 |
03 | function onTouch(Part) |
04 | H.Transparency = 0.5 |
05 | wait( 5 ) |
06 | if 2 * 2 = = 4 then |
07 | print ( "Game is working!" ) |
08 | end |
09 |
10 | script.Parent.Touched:connect(onTouch) |
If you want to see it yourself, try running it in ROBLOX Studio.
Also, yes this should work as 2*2 is basically 2 multiplied by 2 as the asterisk means multiply.
1 | if 2 * 2 = = 4 then |
2 | print ( "Game is working!" ) |
3 | end |
Output:
Game is working!
It'll work fine because 2x2 = 4. You can do this too..
1 | if 2 * 2 > 4 = = true then |
2 | print ( "Game is working!" ) |
3 | end |