u/ActiveConcert4921

Image 1 — How to use the files in World Code
Image 2 — How to use the files in World Code
Image 3 — How to use the files in World Code
Image 4 — How to use the files in World Code
Image 5 — How to use the files in World Code
▲ 4 r/bloxd

How to use the files in World Code

Bloxd has just added files! Here I have created a very basic tutorial for how to use them

Read the captions

This feature helps organize things and also gives us a lot more code space

cannoli pin this frfr

(guys should i make pt2)

u/ActiveConcert4921 — 1 day ago
▲ 2 r/bloxd

reviewing custom games (again)

games are judged on how much effort is in them, how creative it is, and how good the coding and QoL features are, as well as how much players it brings in for how long, and also brainrot=0 obv

first up its

.............................................................................................................................................................................

Tornado Survival - 5*/10*

i mean, it has mid code, but it tends to be laggy and has a bit of errors, also pretty generic but not bad

.............................................................................................................................................................................

Break to get items - 2*/10*

half of the random items are useless, the server is very laggy (even more if someone decides to spam blocks), and not very original

.............................................................................................................................................................................

BloxParty - 9*/10*

very fun game to play with your friends, nice system and code and all

.............................................................................................................................................................................

The-Dark - 9*/10*

good coding and a fun dungeon-themed game

.............................................................................................................................................................................

Youtuber Simulator ❤︎⁠ - 7.5/10

has alright code, and a very intresting theme, its kind of grindy but mostly fun to play

.............................................................................................................................................................................

Bloxd spider sim - 5*/10*

cool code, but it would help if chat wasnt flooded with errors

.............................................................................................................................................................................

Glass Rush UPDATE - 8/10

it gets pretty repetetive, but it is fun navigating the whole bridge with other players

.............................................................................................................................................................................

thats the end of my review, hope you enjoyed, if you have a lobby you'd like me to review (your own or someone else's), say in the comments!

reddit.com
u/ActiveConcert4921 — 2 days ago
▲ 6 r/bloxd

DISABLE RPGS IN BUILD LOBBIES

(doesnt work if they have coder or co-owner btw, cus they can js use api.giveItem)

paste in wc

onPlayerJoin=p=>{
api.setItemStat(p,"RPG","showInCreativeInven",false)
api.setItemStat(p,"Super RPG","showInCreativeInven",false)
}
reddit.com
u/ActiveConcert4921 — 7 days ago
▲ 1 r/bloxd

i won an event :D

ez super

guys protip

if you want super/cosmetics, events are a super fun and easy way to win them

it depends whether your good at pvp/parkour/surviving

there will always be an event that advantageous for you

(or you can be like me and be friends with an ht1 so they carry you thru the whole event)

reddit.com
u/ActiveConcert4921 — 9 days ago
▲ 2 r/bloxd

poweful armor

put in a code block and click

now you cant die

to anything

try

you cant die

(api.killLifeform and api.setHealth dont count btw)

api.setItemSlot(myId,47,"Black Wood Chestplate",1,{customAttributes:{enchantments:{"Protection":1e9,"Health":1e9,"Health Regen":1e9,}}})
api.setItemSlot(myId,48,"Black Wood Gauntlets",1,{customAttributes:{enchantments:{"Protection":1e9,"Health":1e9,"Health Regen":1e9,}}})
api.setItemSlot(myId,49,"Black Wood Leggings",1,{customAttributes:{enchantments:{"Protection":1e9,"Health":1e9,"Health Regen":1e9,}}})
api.setItemSlot(myId,50,"Black Wood Boots",1,{customAttributes:{enchantments:{"Protection":1e9,"Health":1e9,"Health Regen":1e9,}}})
api.setItemStat(myId,"Black Wood Chestplate","armourReduction",1e9)
api.setItemStat(myId,"Black Wood Gauntlets","armourReduction",1e9)
api.setItemStat(myId,"Black Wood Leggings","armourReduction",1e9)
api.setItemStat(myId,"Black Wood Chestplate","armourReduction",1e9)
reddit.com
u/ActiveConcert4921 — 10 days ago
▲ 4 r/bloxd

new api

addUiRequest

so it js makes stuff like tp requests

api.addUiRequest(playerId, {

type: "standard",

title: "Hello?",

acceptText: "Yes",

denyText: "No",

}, 30000)

yea and callback is

onUiRequestResponded
reddit.com
u/ActiveConcert4921 — 13 days ago
▲ 3 r/bloxd

le cool bow

shoot or hit someone with le cool bow to eliminate them

onPlayerJoin=p=>{
api.giveItem(p,"Wood Bow",1,{customDisplayName:"le cool bow"})
}
tick = () => {
    for (const e in oohthisisgonnahurtbro) {
        try {
            oohthisisgonnahurtbro[e]--
            api.applyHealthChange(e, -1, e, true)
            api.setVelocity(e, 0, 3, 0)
            let [x, y, z] = api.getPosition(e)
            api.playParticleEffect({
                presetId: "purpleFirecrackerLarge",
                pos1: [x, y, z],
                pos2: [x + 1, y + 1, z + 1],
            })
            if (oohthisisgonnahurtbro[e] <= 0) delete oohthisisgonnahurtbro[e]
        } catch {
            delete oohthisisgonnahurtbro[e]


        }
    }
}
oohthisisgonnahurtbro = {}
onPlayerDamagingOtherPlayer = (p, e, d, w) => {
    if (api.getHeldItem(p)?.attributes?.customDisplayName == "le cool bow") {
        api.applyEffect(e, "Frozen", 5000, { inbuiltLevel: 2 })
        api.applyEffect(e, "oo this is gonna hurt", 5000, { icon: "Wood Bow" })
        api.applyEffect(e, "oo this is gonna hurt ", 5000, { icon: "Wood Bow" })
        api.applyEffect(e, "oo this is gonna hurt  ", 5000, { icon: "Wood Bow" })
        api.applyEffect(e, "oo this is gonna hurt   ", 5000, { icon: "Wood Bow" })
        oohthisisgonnahurtbro[e] = 200
    }
}
onPlayerDamagingMob = (p, e, d, w) => {
    if (api.getHeldItem(p)?.attributes?.customDisplayName == "le cool bow") {
        api.applyEffect(e, "Frozen", 5000, { inbuiltLevel: 2 })
        api.applyEffect(e, "oo this is gonna hurt", 5000, { icon: "Wood Bow" })
        api.applyEffect(e, "oo this is gonna hurt ", 5000, { icon: "Wood Bow" })
        api.applyEffect(e, "oo this is gonna hurt  ", 5000, { icon: "Wood Bow" })
        api.applyEffect(e, "oo this is gonna hurt   ", 5000, { icon: "Wood Bow" })
        oohthisisgonnahurtbro[e] = 200
    }
}
reddit.com
u/ActiveConcert4921 — 13 days ago
▲ 3 r/bloxd

better proximity chat (adds whispering)

const key={test:"test"};onPlayerJoin=e=>{api.sendMessage(e,[{str:"PROXIMITY CHAT v1.2\n\n",style:{color:"#CEF3FF",fontSize:"16px"}},{str:"1. Public Chat Proximity\n",style:{color:"#CEF3FF",fontSize:"14px"}},{str:"Your text scales dynamically based on distance. Players within 100 blocks can hear you. Capital letters increase your font size. Exclamation marks bypass the distance limit entirely.\n\n",style:{color:"white",fontSize:"12px"}},{str:"2. Target Whispering\n",style:{color:"lightgray",fontSize:"14px"}},{str:"Use commands like whisper, w, tell, message, or m followed by a player name to send a private, global message to that specific person.\n\n",style:{color:"#DDDDDD",fontSize:"12px"}},{str:"3. Local Whispering\n",style:{color:"lightgray",fontSize:"14px"}},{str:"Use a whisper command without a player name to speak softly to your immediate surroundings. This text only reaches players within 20 blocks and shrinks rapidly with distance.",style:{color:"#DDDDDD",fontSize:"12px"}}])};const cD=(e,t)=>Math.hypot(t[0]-e[0],t[1]-e[1],t[2]-e[2]);function onPlayerChat(e,t){let s=t;for(let l in key)s=s.replaceAll(l,key[l]);let o=api.getPosition(e),r=api.getEntityName(e)+": ",i=.5*(s.match(/[A-Z]/g)||[]).length,n=s.includes("!");for(let a of api.getPlayerIds()){let y=cD(o,api.getPosition(a));if(!n&&y>100)continue;let c=`${Math.max(10,Math.min(40,18-.2*y+i))}px`;api.sendMessage(a,[{str:r,style:{color:"#CEF3FF",fontSize:c}},{str:s,style:{color:"white",fontSize:c}}])}return!1}playerCommand=(e,t)=>{let s=["whisper ","w ","tell ","message ","m "],l=null;for(let o of s)if(t.startsWith(o)){l=o;break}if(!l)return;let r=t.slice(l.length).trim();if(!r)return!0;let i=r.split(" ");if(i.length>=2){let n=i.shift(),a=i.join(" "),y=null;for(let c of api.getPlayerIds())if(api.getEntityName(c).toLowerCase()==n.toLowerCase()){y=c;break}if(y)return api.sendMessage(y,[{str:api.getEntityName(e)+" whispered to you: ",style:{color:"lightgray"}},{str:a,style:{color:"white"}}]),api.sendMessage(e,[{str:"You whispered to "+api.getEntityName(y)+": ",style:{color:"lightgray"}},{str:a,style:{color:"white"}}]),!0}let g=r;for(let h in key)g=g.replaceAll(h,key[h]);let f=api.getPosition(e),p=api.getEntityName(e)+" (whisper): ",m=(g.match(/[A-Z]/g)||[]).length,D=.5*m;for(let d of api.getPlayerIds()){let u=cD(f,api.getPosition(d));if(u>20)continue;let w=`${Math.max(8,Math.min(18,16-.15*u+D))}px`;api.sendMessage(d,[{str:p,style:{color:"lightgray",fontSize:w}},{str:g,style:{color:"#DDDDDD",fontSize:w}}])}return api.sendMessage(e,[{str:"You whispered: ",style:{color:"lightgray"}},{str:g,style:{color:"#DDDDDD"}}]),!0};
reddit.com
u/ActiveConcert4921 — 17 days ago
▲ 4 r/bloxd

russian roulette

idk bro i was bored

put it in a code block and click to eliminate someone random

api.broadcastMessage(api.getEntityName(myId)+" spun the gun!")
const t=api.getPlayerIds()[Math.floor(Math.random()*api.getPlayerIds().length)]
api.broadcastMessage(api.getEntityName(t)+" lost the roulette")
api.killLifeform(t,{lifeformId:t,withItem:"M1911"})
reddit.com
u/ActiveConcert4921 — 17 days ago
▲ 7 r/bloxd

sorta proximity chat

the farther you are from someone, the quieter you are, and if ur too far, they cant hear you

you can scream in uppercase (eg: HELLO instead of hello) to make yourself more heard

to make it heard to EVERYONE, you must put a exclamation mark in it (eg: Hi guys!)

const cD=(t,e)=>Math.hypot(e[0]-t[0],e[1]-t[1],e[2]-t[2]);onPlayerChat=(t,e)=>{let o=api.getPosition(t),n=api.getEntityName(t)+": ",i=.5*(e.match(/[A-Z]/g)||[]).length,s=e.includes("!");for(let l of api.getPlayerIds()){let c=cD(o,api.getPosition(l));if(!s&&c>100)continue;let r=`${Math.max(10,Math.min(40,24-.2*c+i))}px`;api.sendMessage(l,[{str:n,style:{color:"#CEF3FF",fontSize:r}},{str:e,style:{color:"white",fontSize:r}}])}return!1};
reddit.com
u/ActiveConcert4921 — 18 days ago
▲ 5 r/bloxd

piano with @Patricson_Bloxd

play songs by selecting the slots!

dont let ur friends in they will eliminate your ears

onPlayerJoin = p => {
    if (api.hasItem(p, "Red Paintball")) return

    api.giveItem(p, "Red Paintball", 1, { customDisplayName: "D" })
    api.giveItem(p, "Orange Paintball", 1, { customDisplayName: "E" })
    api.giveItem(p, "Yellow Paintball", 1, { customDisplayName: "F" })
    api.giveItem(p, "Lime Paintball", 1, { customDisplayName: "G" })
    api.giveItem(p, "Green Paintball", 1, { customDisplayName: "A" })
    api.giveItem(p, "Cyan Paintball", 1, { customDisplayName: "B" })
    api.giveItem(p, "Light Blue Paintball", 1, { customDisplayName: "C" })
    api.giveItem(p, "Blue Paintball", 1, { customDisplayName: "hD" })
}
onPlayerSelectInventorySlot = (p, s) => {
    const h = api.getItemSlot(p, s)?.name || "Air"
    if (h == "Red Paintball") {
        pitch = 1.125
        api.broadcastSound("harp_pling", 1, pitch) 
    }
    else if (h == "Orange Paintball") {
        pitch = 1.25
        api.broadcastSound("harp_pling", 1, pitch)
    }
    else if (h == "Yellow Paintball") {
        pitch = 1.325
        api.broadcastSound("harp_pling", 1, pitch)
    }
    else if (h == "Lime Paintball") {
        pitch = 1.5
        api.broadcastSound("harp_pling", 1, pitch)
    }
    else if (h == "Green Paintball") {
        pitch = 1.7
        api.broadcastSound("harp_pling", 1, pitch)
    }
    else if (h == "Cyan Paintball") {
        pitch = 1.9
        api.broadcastSound("harp_pling", 1, pitch)
    }
    else if (h == "Light Blue Paintball") {
        pitch = 2
        api.broadcastSound("harp_pling", 1, pitch)
    }
    else if (h == "Blue Paintball") {
        pitch = 2.25
        api.broadcastSound("harp_pling", 1, pitch)
    }

}
reddit.com
u/ActiveConcert4921 — 19 days ago
▲ 1 r/bloxd

in the future, will bloxd add custom models and items to the game?

let me explain

as of right now, we are limited to using pre-existing items in bloxd io in our custom games

do you think that bloxd io might consider letting players create their OWN items with its own attributes, models etc?

maybe able to create custom mobs as well?

reddit.com
u/ActiveConcert4921 — 22 days ago
▲ 2 r/bloxd

Imposter Game mini events results

We recently hosted an event for Imposter Game! Hosted by Trainlng and Patricson_Bloxd (u/Patkira in bloxd)

Winners included:

Unblooked

0_oli_2026_0

LoudStar7QC4

Rampage

horror_mod

Toggled

Mr_Yolk

There were many events such as parkour, pvp, sumo, purge, hide and seek and much more. The winners won everything from cosmetics ingame to super and cosmetics such as high society and medieval! GGs to everyone who won, and thank you to the amazing staff that helped hosted it!

(If you are a winner and have not yet recieved your rewards, contact me here or friend user Trainlng to redeem it)

reddit.com
u/ActiveConcert4921 — 23 days ago