Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local ctp = Instance.new("Tool")
- ctp.RequiresHandle = false
- ctp.Name = "skibidi click tp"
- ctp.Activated:Connect(function()
- local targetPos = mouse.Hit.Position + Vector3.new(0, 2.5, 0)
- player.Character:SetPrimaryPartCFrame(CFrame.new(targetPos))
- end)
- ctp.Parent = player.Backpack
Advertisement
Add Comment
Please, Sign In to add comment