Advertisement
Clyclop

Untitled

Nov 23rd, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local p = Instance.new("Part")
  2. p.Parent = workspace
  3. p.Position = Vector3.new(0,0,0)
  4. p.Size = Vector3.new(1,10,10)
  5. p.Transparency = 1
  6. p.Anchored = true
  7. p.CanCollide = false
  8.  
  9. local d = Instance.new("Decal")
  10. d.Face = "Right"
  11. d.Texture = "rbxassetid://526577438"
  12. d.Parent = p
  13.  
  14.  
  15. local s = Instance.new("Sound", p)
  16. s.SoundId = "rbxassetid://420234037"
  17. s.Volume = 1
  18. s.Looped = true
  19. s:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement