Advertisement
BUNBASTER7BLASTER

UNIVERSAL GAMEPASS GIVER [OPEN SOURCE, CLIENT-SIDE]

Jul 23rd, 2024
1,026
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.94 KB | None | 0 0
  1. --[[ Changes all values to true on client-side
  2. By BUNBASTER12BLASTER
  3. Was checked on: https://www.roblox.com/games/13972889842/Bilberry-City-RP
  4. Script is universal(For any old/badcreated game) and we don't accept any risk of ban or damage
  5. Version: v1
  6. Update Date: 2024-07-22
  7. Discord Server: https://discord.gg/f7wyd42ws4
  8. ]]--
  9.  
  10.  
  11. local player = game.Players.LocalPlayer local function BUNBASTER12BLASTER(parent)
  12.     for _, child in ipairs(parent:GetChildren()) do
  13.         if child:IsA("BoolValue") then child.Value = true
  14.         elseif child:IsA("IntValue") or child:IsA("NumberValue") then child.Value = 1
  15.         elseif child:IsA("StringValue") then child.Value = "true"
  16.         elseif child:IsA("ObjectValue") or child:IsA("Vector3Value") or child:IsA("CFrameValue") or child:IsA("Color3Value") then print("the bool" .. child.ClassName .. " was ignored")
  17.         else setValuesToTrue(child)
  18.         end
  19.     end
  20. end BUNBASTER12BLASTER(player)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement