The document contains code for loading a Finity GUI window that provides various cheats and invisible functions for an unknown game. The Finity window contains categories for invisible functions and cheats that allow modifying player visibility, teleporting to different locations, bypassing anti-cheat detection, and automatically killing other players. Many of the cheats warn that the anti-cheat should be disabled or enabled based on the specific cheat being used.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
74 views
ZOぞ Script GUI
The document contains code for loading a Finity GUI window that provides various cheats and invisible functions for an unknown game. The Finity window contains categories for invisible functions and cheats that allow modifying player visibility, teleporting to different locations, bypassing anti-cheat detection, and automatically killing other players. Many of the cheats warn that the anti-cheat should be disabled or enabled based on the specific cheat being used.
for _,part in pairs(game:GetService("Players"):GetChildren()) do if part.Name ~= game.Players.LocalPlayer.Name then part.Character.HumanoidRootPart.Size = Vector3.new(40, 40, 40) part.Character.HumanoidRootPart.Transparency = 0.60 part.Character.HumanoidRootPart.CanCollide = false end end end)
local A_1 = game:GetService("Workspace").Shrines.Map.ALTAR local Event = game:GetService("ReplicatedStorage").ShrineTeleport Event:InvokeServer(A_1) end)
Invisible1:Cheat("Label", "Don't die or you'll be kicked", function()
while true do game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 70 wait() end end)
Invisible1:Cheat("Label", "Better if you not execute the autokill script when you have the anticheat activated!", function() end)
Invisible1:Cheat("Button", "AutoKill", function()
while true do for i,v in pairs(game:GetService("Players"):GetChildren()) do game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame + Vector3.new(1, 10, 1) wait(3) for _,part in pairs(game:GetService("Players"):GetChildren()) do if part.Name ~= game.Players.LocalPlayer.Name then part.Character.HumanoidRootPart.Size = Vector3.new(40, 40, 40) part.Character.HumanoidRootPart.Transparency = 0.60 part.Character.HumanoidRootPart.CanCollide = false end end end end end)