--BROUGHT TO YOU BY RobloxScripter.com!--
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
local Window = OrionLib:MakeWindow({Name = "Man City FREE UGC Items", HidePremium = false, SaveConfig = false, ConfigFolder = "OrionTest"})
local Tab = Window:MakeTab({
Name = "Free Items",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "Coin Autofarming"
})
Tab:AddToggle({
Name = "Autofarm Coins (wait until 1000)",
Default = false,
Callback = function(state)
_G.Activated = state
game:GetService("RunService").RenderStepped:Connect(function()
if _G.Activated then
for _,v in pairs(workspace.Points:GetChildren()) do
if v:IsA("BasePart") and v:FindFirstChild("TouchInterest") then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,0)
end
end
end
end)
end
})
local Section = Tab:AddSection({
Name = "Other"
})
Tab:AddButton({
Name = "Get Flags (Click More Than Once)",
Callback = function()
for _,v in pairs(game.Players.LocalPlayer.PlayerGui:GetDescendants()) do
if v:IsA("ScreenGui") then
v.Enabled = false
end
end
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").GoalKickTeleport.CFrame
end
})