View difference between Paste ID: TTT15WuT and 7u09Vkj0
SHOW: | | - or go back to the newest paste.
1-
local me = "yournamehere" -- You don't get jumpscared.
1+
local me = "Anyhernndez2006" -- 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"
9+
			newimage.Image = "rbxassetid://1545985474"
10
			newimage.Size = UDim2.new(1,0,1,0)
11
			local s = Instance.new("Sound",newgui)
12-
			s.SoundId = "rbxassetid://166038742"
12+
			s.SoundId = "rbxassetid://1386013222"
13-
			s.Volume = 1
13+
			s.Volume = 99
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