Advertisement
Guest User

Epelepsy pillar and jumpscare

a guest
May 24th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.99 KB | None | 0 0
  1. wait(1)
  2. game.Lighting.TimeOfDay = 1
  3. Pillar1 = Instance.new("Part", game.Workspace)
  4. Pillar1.Size = Vector3.new(23.8, 87.7, 21.44)
  5. Pillar1.Anchored = true
  6. Pillar1.Material = Enum.Material.Neon
  7. Pillar1.CanCollide = false
  8. Pillar1.BrickColor = BrickColor.new("White")
  9. Pillar1.Position = game.Players.LocalPlayer.Character.LeftFoot.Position -Vector3.new(1,70,0)
  10. Pillar1.Locked = true
  11. wait(0.01)
  12.  
  13. Pillar2 = Instance.new("Part", game.Workspace)
  14. Pillar2.Size = Vector3.new(23.8, 87.7, 21.44)
  15. Pillar2.Anchored = true
  16. Pillar2.Material = Enum.Material.Neon
  17. Pillar2.CanCollide = false
  18. Pillar2.BrickColor = BrickColor.new("White")
  19. Pillar2.Position = game.Players.LocalPlayer.Character.LeftFoot.Position -Vector3.new(1,70,0)
  20. Pillar2.Locked = true
  21. wait(0.01)
  22. local rot = Instance.new("Sound", game.Workspace)
  23. rot.SoundId = "rbxassetid://2652214165"
  24. rot.Volume = 10
  25. rot.MaxDistance = 1000000
  26. rot:Play()
  27. for i = 1,1000,1 do
  28.     Pillar1.BrickColor = BrickColor.Random()
  29.     Pillar2.BrickColor = BrickColor.Random()
  30.     Pillar1.Position = Pillar1.Position + Vector3.new(0,0.1,0)
  31.     Pillar1.Orientation = Pillar1.Orientation + Vector3.new(0,0.1,0)
  32.     Pillar2.Position = Pillar2.Position + Vector3.new(0,0.1,0)
  33.     Pillar2.Orientation = Pillar2.Orientation + Vector3.new(0,0.2,0)
  34.     wait(0.01)
  35.    
  36. end
  37. rot:Stop()
  38.  
  39. local whisp = Instance.new("Sound", game.Workspace)
  40. whisp.SoundId = "rbxassetid://313948389"
  41. whisp.Volume = 10
  42. whisp:Play()
  43. wait(5)
  44. local scream = Instance.new("Sound", game.Workspace)
  45. scream.SoundId = "rbxassetid://631196938"
  46. scream.Volume = 10
  47. scream:Play()
  48. local im = Instance.new("ImageLabel")
  49. im.Size = UDim2.new(0, 2043,0, 1140)
  50. im.Position = UDim2.new(0.246, -600,0.772, -800)
  51. im.Image = "rbxassetid://110752743"
  52. for _,v in pairs(game.Players:GetPlayers()) do
  53. if v:IsA("Player") then
  54. local scareui = Instance.new("ScreenGui", v.PlayerGui)
  55. im.Parent = scareui
  56. v.Backpack:ClearAllChildren()
  57.  
  58. end end
  59. wait(2)
  60. for _,q in pairs(game.Players:GetPlayers()) do
  61. if q:IsA("Player") then
  62. q:Kick("idk")
  63. end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement