-- Mort’s Fast Teleport Tool local player = game.Players.LocalPlayer local tool = Instance.new("Tool") tool.Name = "Mort's Fast Teleport" tool.RequiresHandle = false tool.Parent = player:WaitForChild("Backpack") local cooldown = 0 tool.Equipped:Connect(function() print("Mort's Fast Teleport equipped - Click to teleport instantly") end) tool.Activated:Connect(function() local now = tick() if now - cooldown < 0.1 then return end -- Very small cooldown for smoothness cooldown = now local mouse = player:GetMouse() local character = player.Character local root = character and character:FindFirstChild("HumanoidRootPart") if root and mouse.Target then -- Fast teleport right above the clicked point root.CFrame = CFrame.new(mouse.Hit.X, mouse.Hit.Y + 4, mouse.Hit.Z) -- Optional: Small visual effect local sparkles = Instance.new("ParticleEmitter") sparkles.Texture = "rbxassetid://243660364" sparkles.Lifetime = NumberRange.new(0.6) sparkles.Rate = 200 sparkles.Speed = NumberRange.new(8) sparkles.Parent = root game.Debris:AddItem(sparkles, 0.8) end end) print("Mort's Fast Teleport Tool added to your backpack!")