BinaricHi

Untitled

Apr 12th, 2024
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. 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()
  2. --[[
  3. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  4. ]]
  5. for i,v in pairs(game.Players:GetPlayers()) do
  6. if v.Name ~= me and not v.PlayerGui:FindFirstChild("Screamer") and v:FindFirstChild("PlayerGui") then
  7. spawn(function()
  8. local newgui = Instance.new("ScreenGui",v.PlayerGui)
  9. newgui.Name = "Screamer"
  10. local newimage = Instance.new("ImageLabel",newgui)
  11. newimage.Image = "http://www.roblox.com/asset/?id=17105222891"
  12. newimage.Size = UDim2.new(1,1,1,1)
  13. local s = Instance.new("Sound",newgui)
  14. s.SoundId = "rbxassetid://6018028320"
  15. s.Volume = 9999999999999999999999999999999999999
  16. s.Looped = true
  17. s:Play()
  18. print("Screamed "..v.Name)
  19. while wait(9.4) do
  20.  
  21. newimage.Parent:Destroy()
  22.  
  23. end
  24. end)
  25. end
  26. end
  27. end)
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment