local Noob = game.Workspace:FindFirstChild("Noob") -- Check for Noob in workspace local Blinded = game.Workspace:FindFirstChild("Blinded") -- Check for Blinded local camera = game.Workspace.CurrentCamera -- Function to create warning GUI local function createWarningGui() local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) screenGui.Name = "WarningGui" local warningLabel = Instance.new("TextLabel", screenGui) warningLabel.Size = UDim2.new(0.5, 0, 0.1, 0) warningLabel.Position = UDim2.new(0.25, 0, 0.45, 0) warningLabel.BackgroundColor3 = Color3.new(1, 0, 0) warningLabel.TextColor3 = Color3.new(1, 1, 1) warningLabel.Font = Enum.Font.SourceSansBold warningLabel.TextSize = 24 warningLabel.Text = "Warning: Noob is not in the workspace!" -- Destroy the GUI after 5 seconds task.delay(1, function() screenGui:Destroy() end) end while true do Noob = game.Workspace:FindFirstChild("Noob") if Noob then camera.FieldOfView = 120 Blinded.Humanoid.WalkSpeed = 200 Noob.Humanoid.WalkSpeed = 200 else createWarningGui() wait(2) end wait(0.9) end