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

I made a papers please booth that used to work and it doesn't anymore, can anyone fix it?

Asked by 4 years ago
local LastNext = tick()
script.Parent.ClickDetector.MouseClick:connect(function(Player)
    if (not Player.Team or Player.Team.Name == 'CheckPoint Employee' or Player.Name == "CloudRomanov") and tick()-LastNext > 3 then
        workspace:WaitForChild('BoothSFX').Present:Play()
        game:GetService("Chat"):Chat(Player.Character,'PAPERS, PLEASE')
        LastNext = tick()
    end
end)
0
^^This is supposed to make the person running the booth say "Papers,Please" the sound part of it works fine. satrasatra 8 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

I answered the question, I changed it so that it only makes you chat, and that you don't need to be in a specific team to use it.

Ad

Answer this question