Advertisement
epicdude6951

Untitled

Dec 7th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. wait(1)
  2. hat = game.InsertService:LoadAsset(164482409):GetChildren()[1]
  3. Player = game.Players.LocalPlayer
  4. Character = Player.Character
  5. game.Lighting.Outlines = false
  6.  
  7.  
  8.  
  9. Head = Character.Head
  10. Torso = Character.Torso
  11. LeftA = Character["Left Arm"]
  12. RightA = Character["Right Arm"]
  13. LeftL = Character["Left Leg"]
  14. RightL = Character["Right Leg"]
  15.  
  16.  
  17.  
  18. for i,v in pairs(Character:GetChildren()) do
  19. if v:IsA("Hat") then
  20. v:remove()
  21. elseif v:IsA("Shirt") then
  22. v:remove()
  23. elseif v:IsA("Pants") then
  24. v:remove()
  25. end
  26. end
  27.  
  28. if Head:FindFirstChild("face") then
  29. Head:FindFirstChild("face"):remove()
  30. end
  31.  
  32. wait(1)
  33.  
  34. shirt = Instance.new("Shirt")
  35. pants = Instance.new("Pants")
  36. face = Instance.new("Decal")
  37. shirt.Parent = Character
  38. pants.Parent = Character
  39. hat.Parent = Character
  40. face.Parent = Head
  41. face.Face = "Front"
  42. face.Texture = "http://www.roblox.com/asset/?id=519213189"
  43. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=531328853"
  44. pants.PantsTemplate = "http://www.roblox.com/asset/?id=460503169"
  45.  
  46. music = Instance.new("Sound",Torso)
  47. music.SoundId = "rbxassetid://548047682"
  48. music.Volume = 2
  49. music:Play()
  50.  
  51.  
  52.  
  53. mouse = Player:GetMouse()
  54.  
  55. mouse.KeyDown:connect(function(ky)
  56. local key = ky:lower()
  57.  
  58. if key == "f" then
  59. game.Chat:Chat(Character, "SHE SAID KONNICHWA <3", Enum.ChatColor.Blue)
  60. elseif key == "e" then
  61. game.Chat:Chat(Character, "LOVE ME SENPAI <3", Enum.ChatColor.Blue)
  62. elseif key == "k" then
  63. game.Chat:Chat(Character, "KAWAII DESU!! <3", Enum.ChatColor.Blue)
  64. elseif key == "q" then
  65. game.Chat:Chat(Character, "DO YOU LOVE?,ME BECAUSE I DO <3", Enum.ChatColor.Blue)
  66. end
  67. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement