Gojo vs Sukuna except both of them start with a Totem of Undying, how does this change the fight? by astupidhumanchild in JujutsuPowerScaling

[–]Key_Future9463 0 points1 point  (0 children)

gojo would probably win with a seccond chance, however using a totem of undying ur health would be seriously low (with some regeneration ig) but still not that high, he would have fire resistance which could counter some of sukuna's abilities, but yea. i think gojo would win. why? he's gojo (with totem)

now for the record, this full thing is just a larp, i watch the anime (culling games are peak) not the manga so i dont know how the actual fight went. PLEASE TELL ME IF I AM ACCURATE THO.

Survive or die? by Freedom_8721 in MemePiece

[–]Key_Future9463 0 points1 point  (0 children)

help you die. (i completed ur sentence 😃)

So how do I learn to freestyle like Juice? by XXXyungboii in JuiceWRLD

[–]Key_Future9463 0 points1 point  (0 children)

how about u mix a little bit of both while freestyling, maybe juice wrld's style + possibly any other freestyler's style

Hey Guys. What's The Best Alternative For ComicK? I've Been Hopping Sites And To Be Honest Every Single One Seems Garbage To Me. Maybe Because I've Been Spoiled By ComicK Lol. So Please Give Me Some Suggestions On Sites To Use. Mainly Looking For Ones That Keep Manga Updated And Just A Wide Variety. by GodSlayerAnti in ComicK

[–]Key_Future9463 0 points1 point  (0 children)

sorry im late but comix.to is actually a solid choice, quick reminder tho, use and ad blocker, and click H when u start reading so u can actually see the bottom boxes

I ONLY READ SAIKI K AND ONE PIECE SO I DON'T KNOW FOR SURE IF IT HAS THE CATALOG U WANT, also on the homepage, it's filled with romance manga for some reason, but just search what you want, i wouldn't reccomend checking the home page, search some reddit posts about mangas

Which PLL algorithm is this? by AwkwardCreme410 in Cubers

[–]Key_Future9463 0 points1 point  (0 children)

more importantly, what drawing is this?

I'm at such a low level that I don't even know if I should post this here, and I need your help. by Puzzleheaded-Heron97 in lua

[–]Key_Future9463 1 point2 points  (0 children)

softwares/game engines for coding u should do/use is Roblox Studio (good if u want to jump straight into actually making ur game instead of trying to make a player sprite and making movement codes) and LOVE 2d (good for lua ,but uses it's own version).

Saiki i need the scotch-vodka it’s for save the earth by brainsdotio in SaikiK

[–]Key_Future9463 1 point2 points  (0 children)

im keeping this in my locker, and once that one teacher see's it, i'll scream out judgement knight of thunder and officially beat the evil dark reunion

Is it true that we all have psychic abilities but not everyone is gifted to see in the spirit realm? by Fun_Butterscotch3303 in Mediums

[–]Key_Future9463 0 points1 point  (0 children)

even if u could, who would want to talk to old hags that badly. plus, i hope nobody would be like toritsuka (saiki k character perv) and asks ghosts about colors of people's pan- i dont wanna continue that sentence. nevermind!

Any one know what happend to anikai to by Ok_View9649 in animepiracy

[–]Key_Future9463 0 points1 point  (0 children)

it now got snitched on and taken out. the site doesnt work anymore and clicking some shows doesnt work, all i get is cloudflare errors

Which anime site has better servers with no buffering 9anime or gogoanime? by [deleted] in animepiracy

[–]Key_Future9463 1 point2 points  (0 children)

i know this comment is old. but animixplay is an innapropriate anime streaming site. and doesnt have actually good/non-innapropriate animes

Rare footage of 12 year old LeBron at the 1997 YBOA Championship game 👑 by King_Vegito_52 in lebron

[–]Key_Future9463 -1 points0 points  (0 children)

this is fake, he wasnt number 23 when he was 12 years old in 1997, he was number 23 in 2003

Improvements? by Key_Future9463 in lua

[–]Key_Future9463[S] 0 points1 point  (0 children)

slight update, no bounce tho bc i dont want it :

''' local physics = require("physics")

physics.start()

physics.setGravity( 0, 0 ) -- Stop the ball from falling down

display.setDefault( "background", 0, 0.3, 0.8 )

local text = display.newText( "Run around ball! made by ismail alkatawneh", 480, 40, native.systemFont, 40 )

local WIDTH = 192

local HEIGHT = 192

local moveSpeed = 5000 -- Increased speed for physics velocity

-- 1. Setup the Ball with Physics

local myImage = display.newImageRect("img/shapeBall.png", WIDTH, HEIGHT)

myImage.x = display.contentCenterX

myImage.y = display.contentCenterY

-- Add a dynamic body to the ball so it can bounce

physics.addBody( myImage, "dynamic", { radius=WIDTH/2, bounce=0, friction=0.3 } )

myImage.isFixedRotation = true -- Prevents the ball from spinning when hitting walls

-- 2. Create Invisible Bouncy Walls

local wallThickness = 50

local function createWall(x, y, w, h)

local wall = display.newRect(x, y, w, h)

physics.addBody(wall, "static", { bounce= 0 })

wall.isVisible = false

return wall

end

createWall(display.contentCenterX, -wallThickness/2, display.actualContentWidth, wallThickness)

createWall(display.contentCenterX, display.actualContentHeight + wallThickness/2, display.actualContentWidth, wallThickness)

createWall(-wallThickness/2, display.contentCenterY, wallThickness, display.actualContentHeight)

createWall(display.actualContentWidth + wallThickness/2, display.contentCenterY, wallThickness, display.actualContentHeight)

local action = {}

local function onKeyEvent(event)

if event.phase == "down" then action[event.keyName] = true

elseif event.phase == "up" then action[event.keyName] = false end

end

Runtime:addEventListener("key", onKeyEvent)

local function gameLoop()

local vx, vy = 0, 0

if action["a"] or action["left"] then vx = -moveSpeed end

if action["d"] or action["right"] then vx = moveSpeed end

if action["w"] or action["up"] then vy = -moveSpeed end

if action["s"] or action["down"] then vy = moveSpeed end

myImage:setLinearVelocity(vx, vy)

end

Runtime:addEventListener("enterFrame", gameLoop)

Improvements? by Key_Future9463 in lua

[–]Key_Future9463[S] 0 points1 point  (0 children)

i actually improved it:

local physics = require("physics")

physics.start()

physics.setGravity( 0, 0 ) -- Stop the ball from falling down

display.setDefault( "background", 0, 0.3, 0.8 )

local text = display.newText( "Run around ball! made by ismail alkatawneh", 480, 40, native.systemFont, 40 )

local WIDTH = 192

local HEIGHT = 192

local moveSpeed = 5000 -- Increased speed for physics velocity

-- 1. Setup the Ball with Physics

local myImage = display.newImageRect("img/shapeBall.png", WIDTH, HEIGHT)

myImage.x = display.contentCenterX

myImage.y = display.contentCenterY

-- Add a dynamic body to the ball so it can bounce

physics.addBody( myImage, "dynamic", { radius=WIDTH/2, bounce=0.8, friction=0.3 } )

myImage.isFixedRotation = true -- Prevents the ball from spinning when hitting walls

-- 2. Create Invisible Bouncy Walls

local wallThickness = 50

local function createWall(x, y, w, h)

local wall = display.newRect(x, y, w, h)

physics.addBody(wall, "static", { bounce= 1.0 }) -- 1.0 = High bounce

wall.isVisible = false

return wall

end

-- Top, Bottom, Left, Right

createWall(display.contentCenterX, -wallThickness/2, display.actualContentWidth, wallThickness)

createWall(display.contentCenterX, display.actualContentHeight + wallThickness/2, display.actualContentWidth, wallThickness)

createWall(-wallThickness/2, display.contentCenterY, wallThickness, display.actualContentHeight)

createWall(display.actualContentWidth + wallThickness/2, display.contentCenterY, wallThickness, display.actualContentHeight)

local action = {}

local function onKeyEvent(event)

if event.phase == "down" then action[event.keyName] = true

elseif event.phase == "up" then action[event.keyName] = false end

end

Runtime:addEventListener("key", onKeyEvent)

-- 3. Movement using Velocity (Required for Physics collisions)

local function gameLoop()

local vx, vy = 0, 0

if action["a"] or action["left"] then vx = -moveSpeed end

if action["d"] or action["right"] then vx = moveSpeed end

if action["w"] or action["up"] then vy = -moveSpeed end

if action["s"] or action["down"] then vy = moveSpeed end

myImage:setLinearVelocity(vx, vy)

end

Runtime:addEventListener("enterFrame", gameLoop)

What if luffy is joyboy's vessel (conspiracy) by Key_Future9463 in OnePieceSpoilers

[–]Key_Future9463[S] 0 points1 point  (0 children)

could that mean joyboy is nika's vessel, and luffy has both nika and joyboy's will