local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "moma hub", Icon = 0, LoadingTitle = "moma hub loading", LoadingSubtitle = "by moma1133222", Theme = "Default", DisableRayfieldPrompts = false, DisableBuildWarnings = false, ConfigurationSaving = { Enabled = false, FolderName = nil, FileName = "moma hub" }, Discord = { Enabled = false, Invite = "noinvitelink", RememberJoins = true }, KeySystem = false, KeySettings = { Title = "Untitled", Subtitle = "Key System", Note = "No method of obtaining the key is provided", FileName = "Key", SaveKey = true, GrabKeyFromSite = false, Key = {"Hello"} } }) local Tab = Window:CreateTab("Main", 4483362458) local Section = Tab:CreateSection("Main stuff") Rayfield:Notify({ Title = "Follow me please", Content = "my script blox moma1133222", Duration = 6.5, Image = 4483362458, }) local args = { [1] = 999, [2] = "Purchased" } local function purchaseCash(amount) args[1] = amount game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddCash"):FireServer(unpack(args)) end local Input = Tab:CreateInput({ Name = "Cash giver", CurrentValue = "", PlaceholderText = "Write the amount of cash you want to get", RemoveTextAfterFocusLost = true, Flag = "Input1", Callback = function(Text) local amount = tonumber(Text) if amount then purchaseCash(amount) end end, }) local UserInputService = game:GetService("UserInputService") UserInputService.InputBegan:Connect(function(input, gameProcessedEvent) if not gameProcessedEvent and input.KeyCode == Enum.KeyCode.F then Input:Focus() end end) local Button = Tab:CreateButton({ Name = "Get all stages", Callback = function() local player = game.Players.LocalPlayer if player and player.Character then local character = player.Character character:SetPrimaryPartCFrame(CFrame.new(1661, 4382, -1812)) end end, })