Advertisement
Clyclop

Untitled

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