Sls64LGamingBro

Yeah, Hi there... I'm just an ordinary person who comes in the SRB2 community, and the sonic fanbase. I also use LUA, as it's a base scripting program for people who wanted to learn about coding. I have a Youtube Channel, it's kind of interesting, hopefully you'll like it? Heh... I have a website, it's fine if you wanna look at it.
Birthday
May 10
Website
https://sites.google.com/view/sls64lgbro/home
Location
Space (In Galaga)

Signature

"Sometimes, it's hard to be reasonable and clear to the community, but sometimes. You just have to go through it yourself" - Sls64LGamingBro


Also, I don't know what to do with this signature. So, here is an original script I written in 2023. I guess you can use this, just please make sure to take permission.


Cool Script:
//My code, I made it.
//It's a lua script in SRB2
//Sonic gets the Upward Thok

addHook("JumpSpinSpecial", function(player)
    if (player.mo.skin == "sonic")
         if not (player.pflags & PF_THOKKED)
            P_SetObjectMomZ(player.mo, 17*FRACUNIT)
            S_StartSound(player.mo, sfx_thok)
            P_SpawnThokMobj(player)
            player.pflags = $1|PF_THOKKED
         end
     end
end)
Back
Top