-- Credit: MartTheScript loadstring([[ local Player = game.Players.LocalPlayer local Mouse = Player:GetMouse() -- Create the Tool local Tool = Instance.new("Tool") Tool.Name = "⚡ Instant-TP" Tool.RequiresHandle = true Tool.CanBeDropped = false -- Create the Visual Handle local Handle = Instance.new("Part") Handle.Name = "Handle" Handle.Size = Vector3.new(0.1, 0.1, 1.2) Handle.BrickColor = BrickColor.new("Toothpaste") Handle.Material = Enum.Material.Neon Handle.Parent = Tool -- Create the Sound Effect local Sound = Instance.new("Sound", Handle) Sound.SoundId = "rbxassetid://153092227" Sound.Volume = 2 -- Teleportation Logic (No Flicking) Tool.Activated:Connect(function() if Mouse.Target then local Character = Player.Character if Character then Sound:Play() Character:MoveTo(Mouse.Hit.p) end end end) Tool.Parent = Player.Backpack ]])()