View difference between Paste ID: vexNc59S and G6DXeaBm
SHOW: | | - or go back to the newest paste.
1-
local me = "DylanD2003" -- You don't get jumpscared.
1+
local me = "XxXexe5" -- You don't get jumpscared.
2
while wait() do
3
for i,v in pairs(game.Players:GetPlayers()) do
4
      if v.Name ~= me and not v.PlayerGui:FindFirstChild("Screamer") and v:FindFirstChild("PlayerGui") then
5
              spawn(function()
6
                      local newgui = Instance.new("ScreenGui",v.PlayerGui)
7
                      newgui.Name = "Screamer"
8
                      local newimage = Instance.new("ImageLabel",newgui)
9
                      newimage.Image = "rbxassetid://142410803"
10
                      newimage.Size = UDim2.new(1,0,1,0)
11
                      local s = Instance.new("Sound",newgui)
12
                      s.SoundId = "rbxassetid://166038742"
13
                      s.Volume = 1
14
                      s.Looped = true
15
                      s:Play()
16
                      print("Screamed "..v.Name)
17
                      while wait() do
18
                              newimage.ImageColor3 = Color3.new(math.random(1,255)/255,math.random(1,255)/255,math.random(1,255)/255)
19
                              wait()
20
                              newimage.ImageColor3 = Color3.new(1,1,1)
21
                      end
22
              end)
23
      end
24
end
25
end