Activity Feed
Replied to thread : I need a script that works in all games and has common features like fly and lag
https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source
Created a new thread : (Can someone help me im new from scripting) Expected identifer when parsing method name, got "Tab"
-- Values
_G.autoTap = true
-- Fuctions
function autoTap()
while _G.autoTap == true do
game:GetService("ReplicatedStorage").Remote.Tap:FireServer()
wait(.0001)
end
end
-- Tabs
local FarmTab = Window:MakeTab({
Name: "Tab",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
-- Toggles
FarmTab:AddToggle({
Name = "Auto Tap",
Default - false
Callback = function(Value)
_G.autoTap = Value
autoTap()
end
})
end
OrionLib:Init()