Advertisement
Clyclop

Untitled

Nov 23rd, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(Player)
  2. if Player.Name == "clyclop12345" then
  3. local p = Instance.new("Part")
  4. p.Parent = workspace
  5. p.Position = Vector3.new(0,0,0)
  6. p.Size = Vector3.new(1,10,10)
  7. p.Transparency = 1
  8. p.Anchored = true
  9. p.CanCollide = false
  10.  
  11. local d = Instance.new("Decal")
  12. d.Face = "Right"
  13. d.Texture = "rbxassetid://526577438"
  14. d.Parent = p
  15.  
  16. local m = Instance.new("Decal")
  17. m.Face = "Left"
  18. m.Texture = "rbxassetid://485085970"
  19. m.Parent = p
  20.  
  21.  
  22. local s = Instance.new("Sound", p)
  23. s.SoundId = "rbxassetid://420234037"
  24. s.Volume = 10
  25. s.Looped = true
  26. s:Play()
  27. end
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement