Categories > Exploiting > Scripts >

[Re-Released] Click TP + Click Delete

Posts: 8

Threads: 4

Joined: Feb, 2018

Reputation: 0

Posted

This script is not mine the creators I still do not know because the script was passed by a friend and he does not know who they are either, when he knows who the creators are, but for now if they need these scripts I leave them here.

Click TP: 
-Instructions: Use "Ctrl Left" + "Click" to be teleported to the place where you put the pointer.
-Script:

local Plr = game:GetService("Players").LocalPlayer
local Mouse = Plr:GetMouse()

Mouse.Button1Down:connect(function()
if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.RightControl) then return end
if not Mouse.Target then return end
Mouse.Target:Destroy()
end)

Click Delete:
-Instructions: Use "Ctrl Right" + "Click" To eliminate what your mouse is pointing
-Script:

local Plr = game:GetService("Players").LocalPlayer
local Mouse = Plr:GetMouse()

Mouse.Button1Down:connect(function()
if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
if not Mouse.Target then return end
Plr.Character:MoveTo(Mouse.Hit.p)
end)


That was it, enjoy!

  • 0

Posts: 94

Threads: 5

Joined: Apr, 2018

Reputation: 12

Replied

Oh sorry i was wrong, the page buttons showing me same page again and again lol
  • 0

undefined

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )