Advertisement
UhhLegoboy

Loleris Simulator

Feb 28th, 2017
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.65 KB | None | 0 0
  1. wait(0)
  2. plr = game.Players.LocalPlayer
  3. char = plr.Character
  4. Sound = Instance.new("Sound", char.Torso)
  5. Sound.SoundId = "rbxassetid://221883053"
  6. Sound.Looped = true
  7. Sound : play()
  8.  
  9. for _, child in pairs(char:GetChildren()) do
  10.     if child.ClassName == 'Shirt' then
  11.         child:Destroy()
  12.     end
  13. end
  14.  
  15. for _, child in pairs(char:GetChildren()) do
  16.     if child.ClassName == 'Pants' then
  17.         child:Destroy()
  18.     end
  19. end
  20.  
  21. Shirt = Instance.new("Shirt", char)
  22. Shirt.ShirtTemplate = "rbxassetid://62300690"
  23. Pants = Instance.new("Pants", char)
  24. Pants.PantsTemplate = "rbxassetid://138981718"
  25.  
  26. for _, child in pairs(char:GetChildren()) do
  27.     if child.ClassName == 'Accessory' then
  28.         child:Destroy()
  29.     end
  30. end
  31.  
  32. --$$$Hair$$$
  33. debounce = false
  34.         h = Instance.new("Accessory")
  35.         p = Instance.new("Part")
  36.         h.Name = "Friendly$$$Hair$$$"
  37.         p.Parent = h
  38.         p.Position = char:findFirstChild("Head").Position
  39.         p.Name = "Handle"
  40.         p.formFactor = 0
  41.         p.BottomSurface = 0
  42.         p.TopSurface = 0
  43.         p.Locked = true
  44.         Hat = Instance.new("SpecialMesh", p)
  45.         Hat.MeshId = "http://www.roblox.com/asset/?id=29880227"
  46.         Hat.TextureId = "http://www.roblox.com/asset/?id=29880238"
  47.         Hat.Scale = Vector3.new(1, 1, 1)
  48.         h.Parent = char
  49.         h.AttachmentForward = Vector3.new (0, 0, -1)
  50.         h.AttachmentPos = Vector3.new(0, 0.1, -0.05)
  51.         h.AttachmentRight = Vector3.new (1, 0, 0)
  52.         h.AttachmentUp = Vector3.new (0, 1, 0)
  53.         wait(0.01)
  54.         debounce = true
  55.  
  56. --$$$Glasses$$$
  57. debounce = false
  58.         h = Instance.new("Accessory")
  59.         p = Instance.new("Part")
  60.         h.Name = "$$$Glasses$$$"
  61.         p.Parent = h
  62.         p.Position = char:findFirstChild("Head").Position
  63.         p.Name = "Handle"
  64.         p.formFactor = 0
  65.         p.BottomSurface = 0
  66.         p.TopSurface = 0
  67.         p.Locked = true
  68.         Hat = Instance.new("SpecialMesh", p)
  69.         Hat.MeshId = "http://www.roblox.com/asset/?id=27719915"
  70.         Hat.TextureId = "http://www.roblox.com/asset/?id=27719888"
  71.         Hat.Scale = Vector3.new(1,1,1)
  72.         h.Parent = char
  73.         h.AttachmentForward = Vector3.new (0, 0, -1)
  74.         h.AttachmentPos = Vector3.new(0, 0.35, 0.1)
  75.         h.AttachmentRight = Vector3.new (1, 0, 0)
  76.         h.AttachmentUp = Vector3.new (0, 1, 0)
  77.         wait(0.01)
  78.         debounce = true
  79.  
  80. char.Head.face.Texture = "rbxassetid://66319713"
  81.  
  82. BC = char ["Body Colors"]
  83. Skin = BrickColor.new("Cool yellow")
  84.  
  85. BC.HeadColor = Skin
  86. BC.LeftArmColor = Skin
  87. BC.LeftLegColor = Skin
  88. BC.RightLegColor = Skin
  89. BC.RightArmColor = Skin
  90. BC.TorsoColor = Skin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement