ADVERTISEMENTREMOVE ADS

AWP.GG ClickTP Universal

Universal script
8 months ago
Script preview thumbnail
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
Raw
-- 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

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS