Advertisement
teotv202

fe script

Dec 30th, 2018
945
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.50 KB | None | 0 0
  1. game["Run Service"].RenderStepped:wait()
  2. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  3. game.Players.LocalPlayer.Character.Head.face:remove()
  4. game.Players.LocalPlayer.Character.Humanoid:ClearAllChildren()
  5. game.Players.LocalPlayer.Character.Head.Mesh:remove()
  6. game.Players.LocalPlayer.Character.Animate:remove()
  7. else
  8. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  9. game.Players.LocalPlayer.Character.Head.face:remove()
  10. game.Players.LocalPlayer.Character.Humanoid:ClearAllChildren()
  11. game.Players.LocalPlayer.Character.Head.Mesh:remove()
  12. game.Players.LocalPlayer.Character.Animate:remove()
  13. end
  14. end
  15.  
  16. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 'inf'
  17. game.Players.LocalPlayer.Character.Humanoid.Health = 'inf'
  18.  
  19. Instance.new("ForceField",game.Players.LocalPlayer.Character).Visible = false
  20.  
  21. gc = game.Players.LocalPlayer.Character:GetChildren()
  22. for i=1, #gc do
  23. if gc[i].ClassName == "Shirt" or gc[i].ClassName == "Pants" or gc[i].ClassName == "ShirtGraphic" then
  24. gc[i]:Destroy()
  25. end
  26. end
  27.  
  28. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  29. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  30. v.Handle.Mesh:Destroy()
  31. end
  32. end
  33. local noclip = true
  34. char = game.Players.LocalPlayer.Character
  35. while true do
  36. if noclip == true then
  37. for _,v in pairs(char:children()) do
  38. pcall(function()
  39. if v.className == "Part" then
  40. v.CanCollide = false
  41. end
  42. end)
  43. end
  44. end
  45. game:service("RunService").Stepped:wait()
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement