GameCrasher Posted May 26, 2020 Posted May 26, 2020 I created a script that auto edits values so the player doesn't have to, when I made a retry button at the end it stops working, can someone halp me? Bloxburg.lua
0 El_dorado Posted May 26, 2020 Posted May 26, 2020 The error starts from line 20. Try using this  Bloxburg.lua 1
0 GameCrasher Posted May 28, 2020 Author Posted May 28, 2020 On 5/26/2020 at 5:05 AM, El_dorado said: The error starts from line 20. Try using this  Bloxburg.lua 3.29 kB · 2 downloads Thanks bro, I thought it was because i didnt put end after if
0 GameCrasher Posted May 29, 2020 Author Posted May 29, 2020 6 hours ago, El_dorado said: Does it work now? No, it has the same problemÂ
0 ItsSC Posted May 30, 2020 Posted May 30, 2020 A little question, what your inf gonna do ? Why edit the same value over and over?
0 ItsSC Posted May 30, 2020 Posted May 30, 2020 Bloxburg.lua The script is running fine, no err found. Maybe the method has been patched? Or maybe the hacking step is wrong.
0 GameCrasher Posted May 30, 2020 Author Posted May 30, 2020 8 hours ago, ItsSC said: A little question, what your inf gonna do ? Why edit the same value over and over? Its for a game with a timer, the timer has 60 seconds then the llayer recieves 10$ and editing the value to 59-60 changes the time to 1 so it hits 0, when it hits zero the timer restarts so if i edit it over and over the player will recieve a bunch of money.
0 ItsSC Posted May 30, 2020 Posted May 30, 2020 2 hours ago, GameCrasher said: Its for a game with a timer, the timer has 60 seconds then the llayer recieves 10$ and editing the value to 59-60 changes the time to 1 so it hits 0, when it hits zero the timer restarts so if i edit it over and over the player will recieve a bunch of money. Maybe the calculation is wrong.. For example, as your script asked "Timer number" if timer = 5, it should be 5, am I right? Then in your script you do 60-5, it become 55. So it is something wrong. Â Just from my plain guess. you should do this timer = gg.prompt( {"TIMER NUMBER"},{""},{"number"}) if(timer[1]>=60)then time = 60-timer[1] else time = timer[1] end This means when the time is 60 seconds, it should return 0. If time is 55, it should return 55, but your current script will return 5.
0 GameCrasher Posted May 30, 2020 Author Posted May 30, 2020 (edited) 4 hours ago, ItsSC said: Maybe the calculation is wrong.. For example, as your script asked "Timer number" if timer = 5, it should be 5, am I right? Then in your script you do 60-5, it become 55. So it is something wrong.  Just from my plain guess. you should do this timer = gg.prompt( {"TIMER NUMBER"},{""},{"number"}) if(timer[1]>=60)then time = 60-timer[1] else time = timer[1] end This means when the time is 60 seconds, it should return 0. If time is 55, it should return 55, but your current script will return 5. Whem I edit the value to any number, it subtracts the value from the timer, Also I appreciate the help bro. Edited May 30, 2020 by GameCrasher
Question
GameCrasher
I created a script that auto edits values so the player doesn't have to, when I made a retry button at the end it stops working, can someone halp me?
Bloxburg.lua
9 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now