Here's what happens when you run it
It starts in the top left corner, and just keeps bouncing and bouncing until it loses all its force
0そうだね プレイ済み
Here's a program I just made
Its a ball that bounces around the screen, each side of the screen is a wall
Try to understand the code
0そうだね プレイ済み
GFILL, unlike javascript, does not support gradients, just solid colors
You could either build your own by drawing a bunch of lines each tinted slightly from the last, but that approach has a terrible performance
So I would just recommend using a sprite instead of graphics
0そうだね プレイ済み
I absolutely love Roblox studio scripting, Lua is a really fun language, its fast, stable, and the garbage collecting is unlike anything I have ever seen
1そうだね プレイ済み
Yeah I built a maze game that randomly generates a 3D maze in Roblox a few years back
And to this day, that project was the most advanced project I have EVER successfully completed without any help figuring out the algorithms
1そうだね プレイ済み
Yea it gets pretty advanced tho
Slightly related: I'm building my own petit modem to send large amounts of text to my 3ds
On my laptop I build a javascript sound transmitter, it sends beeps at 2000HZ really really fast, and the 3ds successfully reads the 1s and 0s
Code in screenshot
1そうだね プレイ済み
Technically you can solve it with only knowledge of 3 sides
But making a rotatable cube is also super easy to do
0そうだね プレイ済み
Key doesnt work
I really wanna see how you made this, because with my knowledge of AI this is completely impossible to build, without exceeding atleast 15,000 lines of code
0そうだね プレイ済み
If you replace " AND " with "&&" then your program will be slightly faster, because && will short circuit
0そうだね 未プレイ
Whats up with all the LEN("priv965403") stuff?
1そうだね プレイ済み
yea, it works, thats how you'd do it
1そうだね プレイ済み
Your syntax is wrong
Functions are functions and cannot be stored in variables
Here this is how you would do it:
DEF SAY S$
?S$
END
SAY "Hi"
0そうだね プレイ済み