Advertisement
bennytrt2

[FE] Invisible Character script *roblox

Apr 28th, 2022
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.47 KB | None | 0 0
  1. --[[
  2.      FE Invisible
  3.      By: Unknown
  4. ]]--
  5.  
  6. Local = game:GetService('Players').LocalPlayer
  7. Char  = Local.Character
  8. touched,tpdback = false, false
  9. Local.CharacterAdded:connect(function(char)
  10.     if script.Disabled ~= true then
  11.         wait(.25)
  12.         loc = Char.HumanoidRootPart.Position
  13.         Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  14.     end
  15. end)
  16. game:GetService('UserInputService').InputBegan:connect(function(key)
  17.     if key.KeyCode == Enum.KeyCode.Equals then
  18.         if script.Disabled ~= true then
  19.             script.Disabled = true
  20.             print'You can Execute Again'
  21.         end
  22.     end
  23. end)
  24. box = Instance.new('Part',workspace)
  25. box.Anchored = true
  26. box.CanCollide = true
  27. box.Size = Vector3.new(10,1,10)
  28. box.Position = Vector3.new(0,10000,0)
  29. box.Touched:connect(function(part)
  30.     if (part.Parent.Name == Local.Name) then
  31.         if touched == false then
  32.             touched = true
  33.             function apply()
  34.                 if script.Disabled ~= true then
  35.                     no = Char.HumanoidRootPart:Clone()
  36.                     wait(.25)
  37.                     Char.HumanoidRootPart:Destroy()
  38.                     no.Parent = Char
  39.                     Char:MoveTo(loc)
  40.                     touched = false
  41.                 end end
  42.             if Char then
  43.                 apply()
  44.             end
  45.         end
  46.     end
  47. end)
  48. repeat wait() until Char
  49. loc = Char.HumanoidRootPart.Position
  50. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement