--BROUGHT TO YOU BY RobloxScripter.com!--
game.Workspace.Gravity = 0
while wait() do
local descendants = game.Workspace:GetDescendants()
for index, descendant in pairs(descendants) do
if descendant.Name == "press" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = descendant.CFrame
end
end
end