Skip to content

Commit c2f3b29

Browse files
committed
random 3
1 parent a4f0587 commit c2f3b29

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

rockytanker.lua

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
--[[
22
local rocky = "rockytanker"
33
4-
if rocky == "rockytanker" then print(rocky) end
5-
if rocky ~= "rockytanker" then print("ROCKY IS ROCKY GRAAAAAAAHHHHHH") end
4+
local random = math.random(1, 3)
5+
if random == 1 then print(rocky) end
6+
if random == 2 then print("ROCKY IS ROCKY GRAAAAAAAHHHHHH") end
7+
if random == 3 then print("the RACISM in my blood...")
68
79
goofy ahh rockytanker
810
webhook doesnt work :skull:
911
okay another webhook test
1012
IT WORKS :longcrazyvn_thumbsup:
11-
]]--
13+
]]--

0 commit comments

Comments
 (0)