Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()local Window = Library.CreateLib("jumpscare", "DarkTheme")local Tab = Window:NewTab("jumpscare")local Section = Tab:NewSection("Section Name")Section:NewLabel("jumpscare all")Section:NewButton("jumpscare all", "ButtonInfo", function()
- --[[
- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
- ]]
- for i,v in pairs(game.Players:GetPlayers()) do
- if v.Name ~= me and not v.PlayerGui:FindFirstChild("Screamer") and v:FindFirstChild("PlayerGui") then
- spawn(function()
- local newgui = Instance.new("ScreenGui",v.PlayerGui)
- newgui.Name = "Screamer"
- local newimage = Instance.new("ImageLabel",newgui)
- newimage.Image = "http://www.roblox.com/asset/?id=17105222891"
- newimage.Size = UDim2.new(1,1,1,1)
- local s = Instance.new("Sound",newgui)
- s.SoundId = "rbxassetid://6018028320"
- s.Volume = 9999999999999999999999999999999999999
- s.Looped = true
- s:Play()
- print("Screamed "..v.Name)
- while wait(9.4) do
- newimage.Parent:Destroy()
- end
- end)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment