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 CoreGui = game:GetService("CoreGui") | |
| local Players = game:GetService("Players") | |
| local PlayerGui = Players.LocalPlayer:WaitForChild("PlayerGui") | |
| -- Fungsi instan untuk mengubah teks GAZE -> OCING | |
| local function fixText(object) | |
| if object:IsA("TextLabel") or object:IsA("TextButton") or object:IsA("TextBox") then | |
| if string.find(object.Text, "GAZE") then | |
| object.Text = string.gsub(object.Text, "GAZE", "OCING") | |
| end |
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
| spawn(function() loadstring([[ local function Clean() for _,v in pairs(game:GetService("CoreGui"):GetDescendants()) do if v:IsA("TextLabel") or v:IsA("TextButton") then v.Text = v.Text:gsub("7yd7", "OCING"):gsub("7Y2D", "OCING") end end end game:GetService("RunService").Heartbeat:Connect(Clean) _G.EmotesGUIRunning = false loadstring(game:HttpGet("https://raw.githubusercontent.com/7yd7/Hub/refs/heads/Branch/GUIS/Emotes.lua"))() ]])() end) |
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
| loadstring([[ | |
| -- 1. Jalankan Script Asli | |
| loadstring(game:HttpGet('https://raw.githubusercontent.com/AAPVdev/scripts/refs/heads/main/UI_LimbExtender.lua'))() | |
| -- 2. Sistem Modifikasi Visual & Fitur Geser | |
| task.spawn(function() | |
| local targetName = "OCINGHUB VIP" | |
| local iconO = "rbxassetid://12003530261" -- ID Ikon huruf O | |
| task.wait(1.5) -- Menunggu UI muncul |
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 Players = game:GetService("Players") | |
| local player = Players.LocalPlayer | |
| local playerGui = player:WaitForChild("PlayerGui") | |
| local screenGui = Instance.new("ScreenGui") | |
| screenGui.Name = "OcingHubTeleport" | |
| screenGui.ResetOnSpawn = false | |
| screenGui.Parent = playerGui | |
| local toggleButton = Instance.new("TextButton") |