Skip to content

Commit

Permalink
WHops
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Sep 27, 2024
1 parent 1dbc153 commit 88fcf34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1770,7 +1770,7 @@ game.Players.LocalPlayer.Chatted:Connect(function(msg)
end

if string.sub(msg:lower(), 1, #prefix + 8) == prefix..'coinflip' then
cflip = "Heads" or "Tails" -- never used this until now, lol
if math.random(1, 2) == 1 then cflip = "Heads" else cflip = "Tails" end
Remind("Coin flip: "..cflip)
end

Expand Down

0 comments on commit 88fcf34

Please sign in to comment.