local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local HttpService = game:GetService("HttpService") local LP = Players.LocalPlayer -- add skins you want/ remove the skins you dont want local targetSkins = { "Silver Floridian (Silver Chariot)", "Ryuk (Whitesnake)", "Velvet (Whitesnake)", "One Who Laughs (Killer Queen)", "Prestige (The World, High Voltage)", "Deimos (Star Platinum)", "Deimos (King Crimson)", "Deimos (C-Moon)", "Goku (The World)", "Esdeath (Weather Report)", "Kawaii (King Crimson)", "Kawaii (Star Platinum)", "Kawaii (The World)", "Egyptian (The World)", "Yoruichi (Red Hot Chili Pepper)", "Makima (Stone Free)", "Baby SJW (The World, High Voltage)", "Igris (King Crimson)", "Carnage (Stone Free)", "Reverso (Crazy Diamond)", "Green (Gold Experience)", "High Contrast (Made In Heaven)", "Turqoise (Stone Free)", "Dark (The World)", "Lima (The World, High Voltage)", "Pinky (Weather Report)", "Ultimate Makima (Stone Free)", "Luffy (Crazy Diamond)", "Galaxy Garou (Star Platinum)", "Momo (C-Moon)", "Violence (The World, High Voltage)", "Nami (Weather Report)", } local running = true local function antiAfk() while running do task.wait(1200) pcall(function() local char = LP.Character if char and char:FindFirstChildOfClass("Humanoid") and char.Humanoid.Health > 0 then if keypress and keyrelease then keypress(0x57) task.wait(0.5) keyrelease(0x57) else local hrp = char:FindFirstChild("HumanoidRootPart") if hrp then local current = hrp.Position char.Humanoid:MoveTo(current + Vector3.new(1,0,0)) task.wait(0.5) char.Humanoid:MoveTo(current) end end end end) end end task.spawn(antiAfk) local function getStandData() local slotData = LP:FindFirstChild("PlayerData") and LP.PlayerData:FindFirstChild("SlotData") if not slotData then return nil end local standVal = slotData:FindFirstChild("Stand") if not standVal then return nil end if standVal:IsA("StringValue") then local ok, data = pcall(HttpService.JSONDecode, HttpService, standVal.Value) if ok and data then return data end elseif standVal:IsA("ModuleScript") then local ok, data = pcall(require, standVal) if ok and data then return data end elseif standVal:IsA("Folder") or standVal:IsA("Configuration") then local nameVal = standVal:FindFirstChild("Name") if nameVal and nameVal:IsA("StringValue") then return { Name = nameVal.Value } end end return nil end local function isTargetSkin(skin) for _, s in ipairs(targetSkins) do if skin == s then return true end end return false end local remote = ReplicatedStorage:WaitForChild("requests"):WaitForChild("character"):WaitForChild("use_item") print("Rolling for target skins...") while true do remote:FireServer("Stand Arrow") local start = tick() local data = nil while tick() - start < 10 do data = getStandData() if data then break end task.wait(0.5) end if data then local skin = data.Skin if skin then print("Skin obtained: " .. skin) if isTargetSkin(skin) then print("SUCCESS! Target skin obtained: " .. skin) running = false break end end end task.wait(3) end print("Script finished.")