GabeTheDog

tixfree1212121 (Broken)

Mar 7th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. --Made By Bartus2009_Bro/GabeTheDog
  2. --Discord: Gabe#2408
  3.  
  4. local plr = game:GetService("Players").LocalPlayer
  5. local char = plr.Character
  6.  
  7. function FindInTable(t, n)
  8. for i,v in pairs(t) do
  9. if v == n then
  10. return true
  11. end
  12. end
  13. return false
  14. end
  15. --Transformaaaaation--
  16. char["Left Arm"].BrickColor = BrickColor.new("Institutional white")
  17. char["Right Arm"].BrickColor = BrickColor.new("Institutional white")
  18. char.Head.BrickColor = BrickColor.new("Institutional white")
  19. char["Left Leg"].BrickColor = BrickColor.new("Institutional white")
  20. char["Right Leg"].BrickColor = BrickColor.new("Institutional white")
  21.  
  22. for i,v in pairs(char:children'') do
  23. local toremove = {"CharacterMesh", "Shirt", "Pants", "ShirtGraphic", "Accessory"}
  24. if FindInTable(toremove, v.ClassName) then v:Destroy() end
  25. if v.ClassName == "BodyColors" then
  26. v.HeadColor = BrickColor.new("Institutional white")
  27. v.LeftArmColor = BrickColor.new("Institutional white")
  28. v.LeftLegColor = BrickColor.new("Institutional white")
  29. v.RightArmColor = BrickColor.new("Institutional white")
  30. v.RightLegColor = BrickColor.new("Institutional white")
  31. v.TorsoColor = BrickColor.new("Institutional white")
  32. end
  33. end
  34.  
  35. Instance.new("Shirt", char).ShirtTemplate = "http://www.roblox.com/asset/?id=766521117"
  36. Instance.new("Pants", char).PantsTemplate = "http://www.roblox.com/asset/?id=1111763144"
  37. local function CreateHat(name, meshid, textureid)
  38. local h = Instance.new("Accessory")
  39. h.Name = name
  40. local han = Instance.new("Part", h)
  41. han.Name = "Handle"
  42. local mesh = Instance.new("SpecialMesh", han)
  43. mesh.Name = "Mesh"
  44. mesh.MeshId = meshid
  45. mesh.TextureId = textureid
  46. return h,han,mesh
  47. end
  48. hum = char:FindFirstChildOfClass'Humanoid'
  49. local h,han,mesh = CreateHat("Stylish Aviators", "http://www.roblox.com/asset/?id=376526673", "http://www.roblox.com/asset/?id=376526673")
  50. han.Size = Vector3.new(1, 1, 1)
  51. mesh.Scale = Vector3.new(0.3, 0.3, 0.3)
  52. h.AttachmentPos = Vector3.new(1.1, 0.38, 0)
  53. hum:AddAccessory(h)
  54. h,han,mesh = CreateHat("Blond Spiked Hair", "http://www.roblox.com/asset/?id=376524487", "http://www.roblox.com/asset/?id=376524487")
  55. mesh.Scale = Vector3.new(3, 3, 3)
  56. han.Size = Vector3.new(1.9, 2, 2)
  57. h.AttachmentPos = Vector3.new(0, 1.54, 0.1)
Add Comment
Please, Sign In to add comment