Universal Script 📌
9.1k Views
59 Executions

Dark Screen For AFK

Universal Script 📌Uploaded by
1 year ago
Please login to perform these actions:

Description

Dark Screen For AFK +Hide all button on screen

View Raw
Edited By: gxe1338 Download


Comments
5
User profile picture
Zsuzz 7 months ago
why no way to turn off
Zsuzz's profile pictureZsuzzwhy no way to turn off
User profile picture
cchuck676 2 months ago
@Zsuzz this script is so peak for afk :>>>
User profile picture
kw1qq 2 months ago
use this local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local CoreGui = game:GetService("CoreGui") local player = Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "BlackoutOverlay" screenGui.ResetOnS* = false screenGui.IgnoreGuiInset = true screenGui.DisplayOrder = 999999 screenGui.Parent = CoreGui local blackoutFrame = Instance.new("Frame") blackoutFrame.Size = UDim2.new(1, 0, 1, 0) blackoutFrame.Position = UDim2.new(0, 0, 0, 0) blackoutFrame.BackgroundColor3 = Color3.new(0, 0, 0) blackoutFrame.BackgroundTransparency = 0 blackoutFrame.BorderSizePixel = 0 blackoutFrame.ZIndex = 99 blackoutFrame.Visible = true -- Starts enabled blackoutFrame.Parent = screenGui -- Toggle with K UserInputService.InputBegan:Connect(function(input, gameProcessed) if gameProcessed then return end if input.KeyCode == Enum.KeyCode.K then blackoutFrame.Visible = not blackoutFrame.Visible end end)
kw1qq's profile picturekw1qquse this local Players = game:GetService("Players"...
User profile picture
baykovec18 1 month ago
@kw1qq для чего он?
baykovec18's profile picturebaykovec18@kw1qq для чего он?
User profile picture
kw1qq 1 month ago
@baykovec18 Это этот скрипт, но ты можешь переключать AFK-экран клавишей (K), чего оригинальный скрипт не позволял.
Please Login to add a comment.