Kerron Backrooms Morphs Mobile Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts—a popular scripting and programming language.
We do not any harmful on your devices we always check it before we post online.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Use your dummy account first we are not responsible if your account getting Ban.
Script Code
local items = {} getgenv().item = nil for _,v in pairs(game:GetService("Players").LocalPlayer.Inventory:GetChildren()) do local insert = true for _,v2 in pairs(items) do if v2 == v.Name then insert = false end end if insert then table.insert(items, v) end end local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "[💀NEW] Backrooms Morphs", LoadingTitle = "[💀NEW] Backrooms Morphs", LoadingSubtitle = "by Kerron", ConfigurationSaving = { Enabled = true, FolderName = nil, -- Create a custom folder for your hub/game FileName = "Big Hub" }, Discord = { Enabled = false, Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD RememberJoins = true -- Set this to false to make them join the discord every time they load it up }, KeySystem = false, -- Set this to true to use our key system KeySettings = { Title = "Untitled", Subtitle = "Key System", Note = "No method of obtaining the key is provided", FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22") } }) --Tabs local ItemsTab = Window:CreateTab("Main", 4483362458) -- Title, Image local ItemsSection = ItemsTab:CreateSection("Items") local GetAllItems = ItemsTab:CreateButton({ Name = "Get All Items", Callback = function() for _,v in pairs(game:GetService("Players").LocalPlayer.Inventory:GetChildren()) do if v.Value == false then v.Value = true end end end, }) local DeleteAllItems = ItemsTab:CreateButton({ Name = "Delete All Items", Callback = function() for _,v in pairs(game:GetService("Players").LocalPlayer.Inventory:GetChildren()) do if v.Value == true then v.Value = false end end end, }) local ItemDropDown = ItemsTab:CreateDropdown({ Name = "Choose an Item(s) to get.", Options = items, CurrentOption = {items[1]}, MultipleOptions = false, Flag = "ItemDropDown", Callback = function(Option) for _,v in pairs(game:GetService("Players").LocalPlayer.Inventory:GetChildren()) do if v.Name == Option[1] then v.Value = true print(v.Name) -- print the name of the selected item end end end, }) local MorphSection = ItemsTab:CreateSection("Morphs") local GetAllMorphs = ItemsTab:CreateButton({ Name = "Get All Items", Callback = function() for _,v in pairs(game:GetService("Players").LocalPlayer.UnlockedMorphs:GetChildren()) do if v.Value == false then v.Value = true end end end, })