Skip to content

Instantly share code, notes, and snippets.

@DinosaurXxX
Created February 11, 2020 19:03
Show Gist options
  • Save DinosaurXxX/ab02148e63b13ec46e8c5c41ce9ab471 to your computer and use it in GitHub Desktop.
Save DinosaurXxX/ab02148e63b13ec46e8c5c41ce9ab471 to your computer and use it in GitHub Desktop.
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