Advertisement
DaOMEGAa32

rick roll script

Oct 23rd, 2019
33,590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. ---credit to DedFense
  2. local s = Instance.new("Sound")
  3.  
  4. s.Name = "Name"
  5. s.SoundId = "rbxassetid://2672209057"
  6. s.Volume = 7
  7. s.Looped = true
  8. s.archivable = false
  9.  
  10. s.Parent = game.Workspace
  11.  
  12. wait(1)
  13.  
  14. s:play()
  15. discord=Instance.new("Hint")
  16. discord.Text = "you got rick rolled!"
  17. discord.Parent = game.Workspace
  18. local me = "DeadDefense" -- You don't get jumpscared.
  19. while wait() do
  20. for i,v in pairs(game.Players:GetPlayers()) do
  21. if v.Name ~= me and not v.PlayerGui:FindFirstChild("Screamer") and v:FindFirstChild("PlayerGui") then
  22. spawn(function()
  23. local newgui = Instance.new("ScreenGui",v.PlayerGui)
  24. newgui.Name = "Screamer"
  25. local newimage = Instance.new("ImageLabel",newgui)
  26. newimage.Image = "http://www.roblox.com/asset/?id=839013297"
  27. newimage.Size = UDim2.new(1,0,1,0)
  28. local s = Instance.new("Sound",newgui)
  29. s.SoundId = "rbxassetid://1662"
  30. s.Volume = 1
  31. s.Looped = true
  32. s:Play()
  33. print("Screamed "..v.Name)
  34. while wait() do
  35. newimage.ImageColor3 = Color3.new(math.random(1,255)/255,math.random(1,255)/255,math.random(1,255)/255)
  36. wait()
  37. newimage.ImageColor3 = Color3.new(1,1,1)
  38. end
  39. end)
  40. end
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement