setclipboard("https://discord.gg/TR3quUFgT6") local players = game:GetService("Players") local workspace = game:GetService("Workspace") local player = players.LocalPlayer local rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local window = rayfield:CreateWindow({ Name = "stud collector", LoadingTitle = "stud collector", LoadingSubtitle = "rayfield gui", ConfigurationSaving = { Enabled = false } }) local tab = window:CreateTab("main") local enabled = false local loop_running = false tab:CreateToggle({ Name = "auto get studs", CurrentValue = false, Callback = function(value) enabled = value if enabled and not loop_running then loop_running = true task.spawn(function() while enabled do local character = player.Character if character then local hrp = character:FindFirstChild("HumanoidRootPart") local studs_folder = workspace:FindFirstChild("Studs") if hrp and studs_folder then for _, obj in ipairs(studs_folder:GetDescendants()) do if obj:IsA("BasePart") then obj.CFrame = hrp.CFrame end end end end task.wait(0.1) end loop_running = false end) end end })