--BROUGHT TO YOU BY RobloxScripter.com!--
local UIS = game:GetService('UserInputService')
local plr = game.Players.LocalPlayer
local Char = plr.Character or plr.CharacterAdded:Wait()
local Key = 'N'
UIS.InputBegan:Connect(function(Input, IsTyping)
if IsTyping then return end
local KeyPressed = Input.KeyCode
if KeyPressed == Enum.KeyCode[Key] then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(19.459272384643555, 412.6218566894531, 471.483154296875)
end
end)