of     1   

SlurpeguyV2
#183650801Monday, February 15, 2016 5:43 AM GMT

[ Content Deleted ]
DaWondersOf
#183650985Monday, February 15, 2016 5:46 AM GMT

no.
amour_eternel
#183651172Monday, February 15, 2016 5:50 AM GMT

game is full rip
DaWondersOf
#183651470Monday, February 15, 2016 5:56 AM GMT

i actually changed my mind then the game is full
SlurpeguyV2
#183651573Monday, February 15, 2016 5:57 AM GMT

[ Content Deleted ]
Mischievously
#183651598Monday, February 15, 2016 5:58 AM GMT

yeah, because this is the most action an oter will get ever in their life
DrForce
#183651759Monday, February 15, 2016 6:02 AM GMT

"yeah, because this is the most action an oter will get ever in their life" lmao
WrathOfTheElvhen
#183651982Monday, February 15, 2016 6:06 AM GMT

--Untested script so yeah local random = math.random local time_to_kiss = 20 function ChoosePlayer() local players = game.Players:GetPlayers() local num = #players local a = players[random(1,num)] local b = players[random(1,num)] while a == b and num > 1 do --So the same player isn't selected to kiss elf b = players[random(1,num)] wait(0) end return a, b end while wait(0) do local p1, p2 = ChoosePlayer() local m = Instance.new("Message",workspace) m.Text = p1.Name.." has to kiss "..p2.Name.."!" wait(2) for i = 20, 1, -1 do m.Text = "Time left: "..i wait(1) end m.Text = "The bottle is spinning!" wait(1) end
Fadious
#183652260Monday, February 15, 2016 6:13 AM GMT

bielmdjddssda
ShIomoShekelstein
#183652278Monday, February 15, 2016 6:13 AM GMT

I must spread my israeli seed to more Foreclosures, debt slaves by the score! 6 trillion shekels, sometimes more! http://www.roblox.com/I-call-shotgun-item?id=361949508
WrathOfTheElvhen
#183652319Monday, February 15, 2016 6:14 AM GMT

--Barely tested local random = math.random local time_to_kiss = 20 local kissing = {"a dog", "a knife", "an explosion"} local m = Instance.new("Message",workspace) function ChoosePlayer() local players = game.Players:GetPlayers() local num = #players if num == 0 then return end local a = players[random(1,num)] local b = players[random(1,num)] while a == b and num > 1 do --So the same player isn't selected to kiss elf b = players[random(1,num)] wait(0) end return a.Name, b.Name end function ChooseObject() local players = game.Players:GetPlayers() local num = #players if num == 0 then return end local a = players[random(1,num)] local b = kissing[random(1,#kissing)] return a.Name, b end while wait(0) do local p1, p2 if random() > 0.5 then p1, p2 = ChoosePlayer() else p1, p2 = ChooseObject() end m.Text = p1.." has to kiss "..p2.."!" wait(2) for i = 20, 1, -1 do m.Text = "Time left: "..i wait(1) end m.Text = "The bottle is spinning!" wait(1) end

    of     1