Flex Your Account Age is a hangout Roblox game developed by Rdite and Webmotion in which players can view each other's account ages, visits, followers, and Recent Average Prices. The game was popularized by YouTuber KonekoKitten eight days after its release.
The development of this project is currently paused.
local HttpService = game:GetService('HttpService')
HttpService:GetAsync('https://proxy.webmotion.games/users/v1/users/3458240?token=ACCESS_TOKEN')
local CollectionService = game:GetService("CollectionService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Connect = require(ReplicatedStorage:WaitForChild("ConnectFramework"))
Connect(CollectionService:GetInstanceAddedSignal("Bread"), function (self, instance: BasePart)
Connect(instance, instance.Touched, function (self, hit)
...
if some_condition then
self:Disconnect()
end
end)
end)