local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui", PlayerGui) screenGui.Name = "TeleportGui" screenGui.ResetOnSpawn = false local mainFrame = Instance.new("Frame", screenGui) mainFrame.Size = UDim2.new(0, 200, 0, 200) mainFrame.Position = UDim2.new(0.05, 0, 0.3, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.Active = true mainFrame.Draggable = true Instance.new("UICorner", mainFrame).CornerRadius = UDim.new(0, 8) local titleLabel = Instance.new("TextLabel", mainFrame) titleLabel.Size = UDim2.new(1, -30, 0, 30) titleLabel.Position = UDim2.new(0, 0, 0, 0) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "Simple Mod Menu" titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.Font = Enum.Font.GothamBold titleLabel.TextSize = 16 titleLabel.TextXAlignment = Enum.TextXAlignment.Left local closeBtn = Instance.new("TextButton", mainFrame) closeBtn.Size = UDim2.new(0, 25, 0, 25) closeBtn.Position = UDim2.new(1, -30, 0, 3) closeBtn.BackgroundColor3 = Color3.fromRGB(180, 50, 50) closeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) closeBtn.Font = Enum.Font.GothamBold closeBtn.TextSize = 18 closeBtn.Text = "X" Instance.new("UICorner", closeBtn).CornerRadius = UDim.new(0, 4) closeBtn.MouseButton1Click:Connect(function() screenGui.Enabled = false end) local function createButton(text, y) local btn = Instance.new("TextButton", mainFrame) btn.Size = UDim2.new(1, -20, 0, 30) btn.Position = UDim2.new(0, 10, 0, y) btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.Gotham btn.TextSize = 14 btn.Text = text Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 6) return btn end local teleportBtn = createButton("Money/Wins Farm", 40) local killAllBtn = createButton("Kill All", 80) local loopKillBtn = createButton("Start Loop Kill", 120) local teleporting = false local targetPos = Vector3.new(-628, 371, 45) task.spawn(function() while true do if teleporting then local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local hrp = char:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = CFrame.new(targetPos) end end task.wait(0) end end) teleportBtn.MouseButton1Click:Connect(function() teleporting = not teleporting teleportBtn.Text = teleporting and "Stop Farm" or "Money/Wins Farm" end) killAllBtn.MouseButton1Click:Connect(function() local e = ReplicatedStorage:FindFirstChild("KillAllEvent") if e and e:IsA("RemoteEvent") then e:FireServer() end end) local loopKilling = false task.spawn(function() while true do if loopKilling then local e = ReplicatedStorage:FindFirstChild("KillAllEvent") if e and e:IsA("RemoteEvent") then e:FireServer() end end task.wait(1) end end) loopKillBtn.MouseButton1Click:Connect(function() loopKilling = not loopKilling loopKillBtn.Text = loopKilling and "Stop Loop Kill" or "Start Loop Kill" end)