Categories > Exploiting > Roblox >

[HELP] StringValue Change with script

Posts: 11

Threads: 2

Joined: Jan, 2023

Reputation: 0

Posted

so i wanted to change the value of stringvalue with a script, here is a screen of a value position that i need to change: screen(i need to change the value of equipped stringvalue)

https://ibb.co/hZMPn1T

  • 0

Added

@RealNickk,wont work

  • 0

Added

@RealNickk, like i made this:

local mt = getrawmetatable(game);
make_writeable(mt);
local old_index = mt.__index;

mt.__index = function(a, b)
if tostring(a) == "Equipped" then -- Name of IntValue object
if tostring(b) == "Value" then
return "Let Him Cook"; -- How much the value will be
end
end
return old_index(a, b);
end

but when i execute this value applies to all players on the server, could u remake this to work noly with localplayer?thx

  • 0

Added

@RealNickk, could u re-script then, cuz i tried lots of ways to make it work

  • 0

Added

@RealNickk,nvm bro this is so simp, i just saw wrong fodler in dex loool
now it works, i used:

game.Players.LocalPlayer.PlayerData.Items.KillEffects.Equipped.Value = "Let Him Cook"
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )