Advertisement
Guest User

lugia

a guest
Dec 10th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. local p = game.Players.LocalPlayer.Character
  2. local weld = Instance.new("Weld",p.Head)
  3. weld.Part0 = p.Torso
  4.  
  5. local Lugia = Instance.new("Part",p.Head)
  6. Lugia.Anchored = true
  7. Lugia.CanCollide = false
  8. Lugia.Size = Vector3.new(10,10,10)
  9. Lugia.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  10. weld.Part1 = Lugia
  11. weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(180),0)
  12. Lugia.Anchored = false
  13. local LugiaMesh = Instance.new("SpecialMesh",Lugia)
  14. LugiaMesh.MeshType = Enum.MeshType.FileMesh
  15. LugiaMesh.Scale = Vector3.new(0.2,0.2,0.2)
  16. LugiaMesh.MeshId = "rbxassetid://430786412"
  17. LugiaMesh.TextureId = "rbxassetid://430786496"
  18. game.Players.LocalPlayer.Character.Head.Tag:Destroy()
  19. game.Players.LocalPlayer.Character.Torso.Anchored = true
  20.  
  21. p.Humanoid.WalkSpeed = 60;
  22.  
  23.  
  24. for i,v in pairs(p:GetChildren()) do
  25. if v:IsA("Part") then
  26. v.Transparency = 1;
  27. elseif v:IsA("Hat") then
  28. v:Destroy()
  29. elseif v:IsA("Model") then
  30. v:Destroy()
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement