local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") -- Create the GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "AnonymousAllowButton" screenGui.ResetOnSpawn = false screenGui.IgnoreGuiInset = true screenGui.Parent = playerGui -- Main button (slightly bigger red rounded rectangle) local button = Instance.new("TextButton") button.Name = "AllowButton" button.Size = UDim2.fromOffset(175, 50) -- Slightly bigger: 175x50 (was 160x45) button.Position = UDim2.new(1, 0, 0, 0) -- Fully flush to top-right button.AnchorPoint = Vector2.new(1, 0) button.BackgroundColor3 = Color3.fromRGB(220, 20, 20) button.BorderSizePixel = 0 button.Text = "Anonymous's allow" button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.GothamBold button.TextSize = 20 -- Slightly bigger text: 20 (was 18) button.TextStrokeTransparency = 0.8 button.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) button.Parent = screenGui -- Rounded corners local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 16) -- Slightly bigger radius: 16 (was 15) corner.Parent = button -- Click to toggle friends allow button.MouseButton1Click:Connect(function() game:GetService("ReplicatedStorage"):WaitForChild("Packages"):WaitForChild("Net"):WaitForChild("RE/PlotService/ToggleFriends"):FireServer() end) button.TouchTap:Connect(function() game:GetService("ReplicatedStorage"):WaitForChild("Packages"):WaitForChild("Net"):WaitForChild("RE/PlotService/ToggleFriends"):FireServer() end)