ADVERTISEMENTREMOVE ADS
AWP.GG ClickTP Universal
47,697 views
Universal script•
8 months ago

Script Preview
Description
This is a universal click teleport (click TP) script designed for use in any game. It is compatible with all executors and should function across various environments. While there is a possibility of detection in games with anti-cheat systems, I have personally tested this script and have not encountered any issues. Please note that this script was edited and tested by me, not originally developed
Features:
- clicktp
- free
- click
- op
- overpowered
ADVERTISEMENTREMOVE ADS
32 Lines • 903 Bytes
-- AWP.GG - CLICKTP SCRIPT
local Player = game.Players.LocalPlayer
local Mouse = Player:GetMouse()
local UserInputService = game:GetService('UserInputService')
local HoldingControl = false
Mouse.Button1Down:connect(function()
if HoldingControl then
Player.Character:MoveTo(Mouse.Hit.p)
end
end)
UserInputService.InputBegan:connect(function(Input, Processed)
if Input.UserInputType == Enum.UserInputType.Keyboard then
if Input.KeyCode == Enum.KeyCode.LeftControl then
HoldingControl = true
elseif Input.KeyCode == Enum.KeyCode.RightControl then
HoldingControl = true
end
end
end)
UserInputService.InputEnded:connect(function(Input, Processed)
if Input.UserInputType == Enum.UserInputType.Keyboard then
if Input.KeyCode == Enum.KeyCode.LeftControl then
HoldingControl = false
elseif Input.KeyCode == Enum.KeyCode.RightControl then
HoldingControl = false
end
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments