Advertisement
udahlah

roblox inf script

Feb 15th, 2020
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. ---un FE inv
  2.  
  3.  
  4. char = game.Players.LocalPlayer.Character
  5. hum = char:FindFirstChildWhichIsA("Humanoid")
  6.  
  7. function scan(p)
  8. for i,v in pairs(p:GetChildren()) do
  9. if v:IsA("BasePart") then
  10. v.Transparency = 1
  11. end
  12. if v:IsA("Decal") then
  13. v.Transparency = 1
  14. end
  15. scan(v)
  16. end
  17. end
  18.  
  19. while true do
  20. if hum.Health <= 0 then break end
  21. scan(char)
  22. wait()
  23. end
  24.  
  25. --- FE inv
  26.  
  27. -- FE Invisible
  28.  
  29. Local = game:GetService('Players').LocalPlayer
  30. Char = Local.Character
  31. touched,tpdback = false, false
  32. Local.CharacterAdded:connect(function(char)
  33. if script.Disabled ~= true then
  34. wait(.25)
  35. loc = Char.HumanoidRootPart.Position
  36. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  37. end
  38. end)
  39. game:GetService('UserInputService').InputBegan:connect(function(key)
  40. if key.KeyCode == Enum.KeyCode.Equals then
  41. if script.Disabled ~= true then
  42. script.Disabled = true
  43. print'you may re-execute'
  44. end
  45. end
  46. end)
  47. box = Instance.new('Part',workspace)
  48. box.Anchored = true
  49. box.CanCollide = true
  50. box.Size = Vector3.new(10,1,10)
  51. box.Position = Vector3.new(0,10000,0)
  52. box.Touched:connect(function(part)
  53. if (part.Parent.Name == Local.Name) then
  54. if touched == false then
  55. touched = true
  56. function apply()
  57. if script.Disabled ~= true then
  58. no = Char.HumanoidRootPart:Clone()
  59. wait(.25)
  60. Char.HumanoidRootPart:Destroy()
  61. no.Parent = Char
  62. Char:MoveTo(loc)
  63. touched = false
  64. end end
  65. if Char then
  66. apply()
  67. end
  68. end
  69. end
  70. end)
  71. repeat wait() until Char
  72. loc = Char.HumanoidRootPart.Position
  73. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement