Advertisement
AgentVK

Maid Venge

Dec 11th, 2017
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. --[[
  2. Original Venge transformation Made by Kiriot22
  3.  
  4. Maid Venge By PabloRV(edited from Kiriot's original
  5. --]]
  6. local plr = game:GetService("Players").LocalPlayer
  7. local char = plr.Character
  8.  
  9. function FindInTable(t, n)
  10. for i,v in pairs(t) do
  11. if v == n then
  12. return true
  13. end
  14. end
  15. return false
  16. end
  17. --Transformaaaaation--
  18. char["Left Arm"].BrickColor = BrickColor.new("Medium stone")
  19. char["Right Arm"].BrickColor = BrickColor.new("Medium stone")
  20. char.Head.BrickColor = BrickColor.new("Medium stone")
  21. char["Left Leg"].BrickColor = BrickColor.new("Medium stone")
  22. char["Right Leg"].BrickColor = BrickColor.new("Medium stone")
  23.  
  24. for i,v in pairs(char:children'') do
  25. local toremove = {"CharacterMesh", "Shirt", "Pants", "ShirtGraphic", "Accessory"}
  26. if FindInTable(toremove, v.ClassName) then v:Destroy() end
  27. if v.ClassName == "BodyColors" then
  28. v.HeadColor = BrickColor.new("Medium stone")
  29. v.LeftArmColor = BrickColor.new("Medium stone")
  30. v.LeftLegColor = BrickColor.new("Medium stone")
  31. v.RightArmColor = BrickColor.new("Medium stone")
  32. v.RightLegColor = BrickColor.new("Medium stone")
  33. v.TorsoColor = BrickColor.new("Medium stone")
  34. end
  35. end
  36.  
  37. local face = char.Head:FindFirstChild'face' if face then face.Texture = "http://www.roblox.com/asset/?id=13038247" end
  38. Instance.new("Pants", char).PantsTemplate = "http://www.roblox.com/asset/?id=1177701588"
  39. local function CreateHat(name, meshid, textureid)
  40. local h = Instance.new("Accessory")
  41. h.Name = name
  42. local han = Instance.new("Part", h)
  43. han.Name = "Handle"
  44. local mesh = Instance.new("SpecialMesh", han)
  45. mesh.Name = "Mesh"
  46. mesh.MeshId = meshid
  47. mesh.TextureId = textureid
  48. return h,han,mesh
  49. end
  50. hum = char:FindFirstChildOfClass'Humanoid'
  51. local h,han,mesh = CreateHat("Ultra-Fabulous Hair", "http://www.roblox.com/asset/?id=16627529", "http://www.roblox.com/asset/?id=16627494")
  52. mesh.Scale = Vector3.new(1.05, 1.05, 1.05)
  53. han.Size = Vector3.new(2, 2, 2)
  54. hum:AddAccessory(h)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement