Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Auth = {"clyclop12345"}
- game.Players.PlayerAdded:connect(function(Player)
- for i = 1,#Auth do
- if Player.Name == Auth[i] then
- local p = Instance.new("Part")
- p.Position = Vector3.new(0,0,0)
- p.Size = Vector3.new(1,10,10)
- p.Transparency = 1
- p.Anchored = true
- p.CanCollide = false
- p.Parent = workspace
- local d = Instance.new("Decal")
- d.Face = "Right"
- d.Texture = "rbxassetid://526577438"
- d.Parent = p
- local m = Instance.new("Decal")
- m.Face = "Left"
- m.Texture = "rbxassetid://485085970"
- m.Parent = p
- local s = Instance.new("Sound")
- s.SoundId = "rbxassetid://420234037"
- s.Volume = 10
- s.Looped = true
- s.Parent = p
- s:Play()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement