Here is the code
Popup = script.Parent.SpawnInfoScreen
Ready = true
function onTouch(hit)
local h = hit.Parent:FindFirstChild("Humanoid")
if h ~= nil and Ready == true then
Ready = false
local plyr = game.Players:FindFirstChild(h.Parent.Name)
local c = Popup:clone()
c.Parent = plyr.PlayerGui
wait(3)
c:remove()
wait(1)
Ready = true
end
end
script.Parent.Touched:connect(onTouch)
This code is from a yt vid and idk why its not working
** You are now Level 3! **