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
| --// CHỐNG CHẠY LẠI | |
| pcall(function() | |
| if game.CoreGui:FindFirstChild("Music_Crow") then | |
| game.CoreGui.Music_Crow:Destroy() | |
| end | |
| end) | |
| --// SERVICES | |
| local UIS = game:GetService("UserInputService") |
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
| --// CHỐNG CHẠY LẠI | |
| pcall(function() | |
| if game.CoreGui:FindFirstChild("Music_Crow") then | |
| game.CoreGui.Music_Crow:Destroy() | |
| end | |
| end) | |
| --// SERVICES | |
| local UIS = game:GetService("UserInputService") |
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
| adjustVelocity(0.58) | |
| # Intro (êm, chill) | |
| keypress("o", 1.6, bpm) | |
| keypress("8", 0.6, bpm) | |
| rest(1.2, bpm) | |
| keypress("0", 0.6, bpm) | |
| keypress("w", 0.6, bpm) | |
| rest(1.4, bpm) |
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
| --// CHỐNG CHẠY LẠI | |
| pcall(function() | |
| if game.CoreGui:FindFirstChild("Music_Crow") then | |
| game.CoreGui.Music_Crow:Destroy() | |
| end | |
| end) | |
| --// SERVICES | |
| local UIS = game:GetService("UserInputService") |
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
| adjustVelocity(0.6) | |
| # Intro | |
| keypress("o", 1.5, bpm) | |
| keypress("8", 0.5, bpm) | |
| rest(1, bpm) | |
| keypress("0", 0.5, bpm) | |
| keypress("w", 0.5, bpm) | |
| rest(1, bpm) |
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
| --// CHỐNG CHẠY LẠI | |
| pcall(function() | |
| if game.CoreGui:FindFirstChild("Music_Crow") then | |
| game.CoreGui.Music_Crow:Destroy() | |
| end | |
| end) | |
| --// SERVICES | |
| local UIS = game:GetService("UserInputService") |
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
| --// CHỐNG CHẠY LẠI | |
| pcall(function() | |
| if game.CoreGui:FindFirstChild("Music_Crow") then | |
| game.CoreGui.Music_Crow:Destroy() | |
| end | |
| end) | |
| --// SERVICES | |
| local UIS = game:GetService("UserInputService") |
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
| -- Anti AFK Script (LocalScript) | |
| local Players = game:GetService("Players") | |
| local VirtualUser = game:GetService("VirtualUser") | |
| local player = Players.LocalPlayer | |
| -- đảm bảo player đã load | |
| if not player then | |
| Players:GetPropertyChangedSignal("LocalPlayer"):Wait() |
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
| --// Services | |
| local Players = game:GetService("Players") | |
| local RunService = game:GetService("RunService") | |
| local Stats = game:GetService("Stats") | |
| local VirtualUser = game:GetService("VirtualUser") | |
| local player = Players.LocalPlayer | |
| local playerGui = player:WaitForChild("PlayerGui") | |
| --// Anti AFK |
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
| --// Loading Screen PRO | |
| local TweenService = game:GetService("TweenService") | |
| local loadingGui = Instance.new("ScreenGui", playerGui) | |
| loadingGui.Name = "LoadingUI" | |
| local bg = Instance.new("Frame", loadingGui) | |
| bg.Size = UDim2.new(1,0,1,0) | |
| bg.BackgroundColor3 = Color3.fromRGB(0,0,0) |