Advertisement
Clyclop

Untitled

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