Advertisement
Yenzkeirando

FE titan script fluxus

Nov 15th, 2022
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1.  
  2. --body sizes: BodyHeightScale: 105%
  3. -- BodyWidthScale: 100%
  4. -- HeadScale: 100%
  5. -- BodyProportionScale: 0%
  6. -- AvatarPartScaleType: 100%
  7.  
  8.  
  9. local LocalPlayer = game:GetService("Players").LocalPlayer
  10. local Character = LocalPlayer.Character
  11. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  12.  
  13. function rm()
  14. for i,v in pairs(Character:GetDescendants()) do
  15. if v:IsA("BasePart") then
  16. if v.Name == "Handle" or v.Name == "Head" then
  17. if Character.Head:FindFirstChild("OriginalSize") then
  18. Character.Head.OriginalSize:Destroy()
  19. end
  20. else
  21. for i,cav in pairs(v:GetDescendants()) do
  22. if cav:IsA("Attachment") then
  23. if cav:FindFirstChild("OriginalPosition") then
  24. cav.OriginalPosition:Destroy()
  25. end
  26. end
  27. end
  28. v:FindFirstChild("OriginalSize"):Destroy()
  29. if v:FindFirstChild("AvatarPartScaleType") then
  30. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  31. end
  32. end
  33. end
  34. end
  35. end
  36.  
  37. rm()
  38. wait(0.5)
  39. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  40. wait(1)
  41.  
  42. rm()
  43. wait(0.5)
  44. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  45. wait(1)
  46.  
  47. rm()
  48. wait(0.5)
  49. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  50. wait(1)
  51.  
  52. rm()
  53. wait(0.5)
  54. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  55. wait(1)
  56.  
  57. rm()
  58. wait(0.5)
  59. Humanoid:FindFirstChild("HeadScale"):Destroy()
  60. wait(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement