This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() | |
| local Window = Rayfield:CreateWindow({ | |
| Name = "Yapppppp", | |
| Icon = 0, | |
| LoadingTitle = "SAB keysystem (n.exc)", | |
| LoadingSubtitle = "loading", | |
| Theme = "Default", | |
| DisableRayfieldPrompts = false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- ╔═══════════════════════════════════════════════════════════════╗ | |
| -- ║ نوس هوب - Ultimate Dukhm v1.0 ║ | |
| -- ║ Naser Adm @adm_naser40968 ║ | |
| -- ║ نوس هوب نوس هوب نوس هوب نوس هوب نوس هوب نوس هوب ║ | |
| -- ║ نوس هوب نوس هوب نوس هوب نوس هوب نوس هوب نوس هوب ║ | |
| -- ╚═══════════════════════════════════════════════════════════════╝ | |
| local Players = game:GetService("Players") | |
| local LocalPlayer = Players.LocalPlayer | |
| local TweenService = game:GetService("TweenService") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| ADVANCED DESYNC CONCEPT (V4) | |
| Este script tenta usar 'Metatable Hooking' para enganar o servidor. | |
| ]] | |
| local player = game.Players.LocalPlayer | |
| local char = player.Character or player.CharacterAdded:Wait() | |
| local root = char:WaitForChild("HumanoidRootPart") | |
| -- Interface |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local player = game.Players.LocalPlayer | |
| local char = player.Character or player.CharacterAdded:Wait() | |
| local root = char:WaitForChild("HumanoidRootPart") | |
| -- Interface | |
| local sg = Instance.new("ScreenGui", game:GetService("CoreGui")) | |
| local btn = Instance.new("TextButton", sg) | |
| btn.Size = UDim2.new(0, 150, 0, 50) | |
| btn.Position = UDim2.new(0.5, -75, 0.2, 0) | |
| btn.Text = "DESYNC: OFF" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| DESYNC MOBILE FIX | |
| ]] | |
| local player = game.Players.LocalPlayer | |
| local root = player.Character:WaitForChild("HumanoidRootPart") | |
| -- Criar Interface (Botão Simples) | |
| local sg = Instance.new("ScreenGui", game:GetService("CoreGui")) | |
| local btn = Instance.new("TextButton", sg) | |
| btn.Size = UDim2.new(0, 150, 0, 50) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| DESYNC V2 - FAKE BODY REPLICATION | |
| Instruções: Atualize seu Gist com este código. | |
| ]] | |
| local L_Players = game:GetService("Players") | |
| local L_RunService = game:GetService("RunService") | |
| local L_LocalPlayer = L_Players.LocalPlayer | |
| local L_Char = L_LocalPlayer.Character or L_LocalPlayer.CharacterAdded:Wait() | |
| local L_Root = L_Char:WaitForChild("HumanoidRootPart") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| DESYNC TOOL SCRIPT (MOBILE OPTIMIZED) | |
| Instruções: Pegue este código, suba no GitHub/Pastebin e use o link. | |
| ]] | |
| local L_Players = game:GetService("Players") | |
| local L_RunService = game:GetService("RunService") | |
| local L_LocalPlayer = L_Players.LocalPlayer | |
| local L_Char = L_LocalPlayer.Character or L_LocalPlayer.CharacterAdded:Wait() | |
| local L_Root = L_Char:WaitForChild("HumanoidRootPart") |