Welcome to my website! 39 views 6 months ago

TheForge script

TheForge script

--======================== -- SERVICES --======================== local Players = game:GetService("Players") local VirtualUser = game:GetService("VirtualUser") local player = Players.LocalPlayer --======================== -- SETTINGS --======================== local KEY = "theforge" --======================== -- KEY GUI --======================== local gui = Instance.new("ScreenGui") gui.Name = "ForgeKeyGui" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 280, 0, 180) frame.Position = UDim2.new(0.5, -140, 0.5, -90) frame.BackgroundColor3 = Color3.fromRGB(0, 120, 255) frame.BorderSizePixel = 0 Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 14) local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 40) title.Text = "FORGE KEY SYSTEM" title.Font = Enum.Font.GothamBold title.TextSize = 16 title.TextColor3 = Color3.new(1,1,1) title.BackgroundTransparency = 1 local box = Instance.new("TextBox", frame) box.Size = UDim2.new(1, -40, 0, 35) box.Position = UDim2.new(0, 20, 0, 55) box.PlaceholderText = "Enter Key" box.Text = "" box.ClearTextOnFocus = false box.Font = Enum.Font.Gotham box.TextSize = 14 box.TextColor3 = Color3.new(1,1,1) box.BackgroundColor3 = Color3.fromRGB(0, 80, 200) Instance.new("UICorner", box) local verify = Instance.new("TextButton", frame) verify.Size = UDim2.new(1, -40, 0, 35) verify.Position = UDim2.new(0, 20, 0, 100) verify.Text = "VERIFY" verify.Font = Enum.Font.GothamBold verify.TextSize = 14 verify.TextColor3 = Color3.new(1,1,1) verify.BackgroundColor3 = Color3.fromRGB(0, 160, 255) Instance.new("UICorner", verify) --======================== -- AUTO CLICKER GUI --======================== local function createAutoClicker() local autoGui = Instance.new("ScreenGui", player.PlayerGui) autoGui.Name = "AutoClickerGui" local main = Instance.new("Frame", autoGui) main.Size = UDim2.new(0, 240, 0, 130) main.Position = UDim2.new(0.5, -120, 0.75, -65) main.BackgroundColor3 = Color3.fromRGB(0, 110, 255) main.BorderSizePixel = 0 Instance.new("UICorner", main).CornerRadius = UDim.new(0, 14) local label = Instance.new("TextLabel", main) label.Size = UDim2.new(1, 0, 0, 35) label.Text = "AUTO CLICKER" label.Font = Enum.Font.GothamBold label.TextSize = 16 label.TextColor3 = Color3.new(1,1,1) label.BackgroundTransparency = 1 local toggle = Instance.new("TextButton", main) toggle.Size = UDim2.new(1, -40, 0, 45) toggle.Position = UDim2.new(0, 20, 0, 55) toggle.Text = "OFF" toggle.Font = Enum.Font.GothamBold toggle.TextSize = 18 toggle.TextColor3 = Color3.new(1,1,1) toggle.BackgroundColor3 = Color3.fromRGB(0, 60, 180) Instance.new("UICorner", toggle) local clicking = false toggle.MouseButton1Click:Connect(function() clicking = not clicking toggle.Text = clicking and "ON" or "OFF" toggle.BackgroundColor3 = clicking and Color3.fromRGB(0, 255, 170) or Color3.fromRGB(0, 60, 180) end) task.spawn(function() while task.wait(0.1) do if clicking then VirtualUser:Button1Down(Vector2.new(0,0)) task.wait(0.01) VirtualUser:Button1Up(Vector2.new(0,0)) end end end) end --======================== -- VERIFY KEY --======================== verify.MouseButton1Click:Connect(function() if box.Text == KEY then gui:Destroy() createAutoClicker() else verify.Text = "WRONG KEY" task.wait(1) verify.Text = "VERIFY" end end)

Verifying you're human...