-- discord.gg/XsyfvJrk4B
-- By Nescoroco
local tpEnabled = false
local tpPosition = CFrame.new(761.602, 21.400, 351.388)
local function toggleTP()
tpEnabled = not tpEnabled
print("TP Enabled:", tpEnabled)
if tpEnabled then
task.spawn(function()
while tpEnabled do
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = tpPosition
task.wait(0.1)
end
end)
end
end
local UserInputService = game:GetService("UserInputService")
UserInputService.InputBegan:Connect(function(input, isProcessed)
if not isProcessed then
if input.KeyCode == Enum.KeyCode.E then
toggleTP()
end
end
end)
Comments
No comments yet
Be the first to share your thoughts!