ADVERTISEMENTREMOVE ADS
👀 Spy on ANYONE
48,064 views
Description
This script prints out your username and puts is watching and the victim's name (all-players).
This is script is also undetected, due to cloneref() so games can't detect you ;)
(It works on every executor.)
UPDATE-LOG #1:
Cleaned up code
Version is at 1.0.2
More error handling
Made with love by Stav 💖
Features:
- Undetected
- Watching 👀
ADVERTISEMENTREMOVE ADS
25 Lines • 923 Bytes
local version = "Version 1.0.2";
if not cloneref then
getgenv().cloneref = newcclosure(function(ref)
local newref = newproxy(true);
setmetatable(newref, getmetatable(ref));
return newref;
end);
return warn('Run this script again! You are all set! ('..identifyexecutor()..')');
else
local playersService = cloneref(game:GetService("Players"));
local lplr = playersService.LocalPlayer;
print(lplr.Name..' ('..lplr.UserId..') is watching you!');
for i,v in pairs(playersService:GetPlayers()) do
print(lplr.Name..' ('..lplr.UserId..') is watching '..v.Name);
end;
print('Executor: '..identifyexecutor()..' ('..version..')');
end;
--[[
print(lplr.Name..' ('..lplr.UserId..') is watching '..v.Name);
print(v.Name..' ('..v.UserId..') is watching '..lplr.Name);
Credits to insaladareal for the getrawmetatable() function.
]]
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS
Comments