getgenv().running = true local ReplicatedStorage = game:GetService("ReplicatedStorage") local RemoteFunction = ReplicatedStorage.Packages._Index["sleitnick_knit@1.5.1"].knit.Services.GiftService.RF.GetPresent while getgenv().running do local success, err = pcall(function() RemoteFunction:InvokeServer("Present") end) if not success then warn("Error:", err) end task.wait(0.01) end