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

Is this going to work?

Asked by 11 years ago

Just checking.

01H = game.Workspace.Part
02 
03function onTouch(Part)
04H.Transparency = 0.5
05wait(5)
06if 2*2 == 4 then
07print ("Game is working!")
08end
09 
10script.Parent.Touched:connect(onTouch)
  • Newbie in progress...

3 answers

Log in to vote
2
Answered by
Dummiez 360 Moderation Voter
11 years ago

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.

1if 2*2 == 4 then
2    print ("Game is working!")
3end

Output:

Game is working!

0
Thank you :D bloonblaster2000 55 — 11y
Ad
Log in to vote
1
Answered by 11 years ago
1if 2*2 >= 4 == true then
2    print("Game is Working!")
3end
Log in to vote
0
Answered by 11 years ago

It'll work fine because 2x2 = 4. You can do this too..

1if 2*2 > 4 == true then
2    print ("Game is working!")
3end

Answer this question