Created
February 11, 2020 19:03
-
-
Save DinosaurXxX/ab02148e63b13ec46e8c5c41ce9ab471 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local player = game.Players.LocalPlayer | |
position = player.Character.HumanoidRootPart.Position | |
wait(0.1) | |
player.Character:MoveTo(position + Vector3.new(0, 1000000, 0)) | |
wait(0.1) | |
humanoidrootpart = player.Character.HumanoidRootPart:clone() | |
wait(0.1) | |
player.Character.HumanoidRootPart:Destroy() | |
humanoidrootpart.Parent = player.Character | |
player.Character:MoveTo(position) | |
wait() | |
-- Remove this if you want to see yourself (others still won't see you) | |
game.Players.LocalPlayer.Character.Torso.Transparency = 1 | |
game.Players.LocalPlayer.Character.Head.Transparency = 1 | |
game.Players.LocalPlayer.Character["Left Arm"].Transparency = 1 | |
game.Players.LocalPlayer.Character["Right Arm"].Transparency = 1 | |
game.Players.LocalPlayer.Character["Left Leg"].Transparency = 1 | |
game.Players.LocalPlayer.Character["Right Leg"].Transparency = 1 | |
game.Players.LocalPlayer.Character.Humanoid:RemoveAccessories() | |
game.Players.LocalPlayer.Character.Head.face:Remove() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment