Frouk Grandmaster Cheater
Reputation: 5
Joined: 22 Jun 2021 Posts: 510
|
Posted: Tue Jul 27, 2021 5:19 am Post subject: Read whole table |
|
|
Maybe someone face a problem where you can't read or write whole table
| Code: | player = {
Health = ("[playerPTR] + 600");
Armor = ("[playerPTR] + 640");
}
--This is table
|
But everytime you need to type
| Code: | | readFloat(player.Health) | and etc.
| Code: | for i, v in pairs(player) do
readFloat(v)
end |
In this case this code will read float of health and armor
|
|