self introduction!
by aihkw - Sunday June 18, 2023 at 10:52 AM
#1
Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino
Reply
#2
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

oh you're a roblox coder yeah? name all the metatables rn and all their functions + how to use them in a code.
Reply
#3
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

Basically all useless garbage. Sweet.
Ban reason: Extreme degenerate behavior | Unwelcome here (Permanent)
Reply
#4
(06-18-2023, 10:53 AM)cyberia Wrote:
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

oh you're a roblox coder yeah? name all the metatables rn and all their functions + how to use them in a code.

say that I want to make a part that explodes when the user clicked

game
- Workspace
   - Part
      - ClickDetector
      - Script
- Camera
- ..
- ..

Inside the script;
local part = script.Parent
local cd = script.Parent.ClickDetector

cd.clicked:Connect(function()
   local boom = Instance.new("Explosion")
   boom.parent = game.Workspace
)

(06-18-2023, 10:57 AM)kilob Wrote:
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

Basically all useless garbage. Sweet.

that sounds mean but thanks
Reply
#5
(06-18-2023, 10:58 AM)aihkw Wrote:
(06-18-2023, 10:53 AM)cyberia Wrote:
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

oh you're a roblox coder yeah? name all the metatables rn and all their functions + how to use them in a code.

say that I want to make a part that explodes when the user clicked

game
- Workspace
   - Part
      - ClickDetector
      - Script
- Camera
- ..
- ..

Inside the script;
local part = script.Parent
local cd = script.Parent.ClickDetector

cd.clicked:Connect(function()
   local boom = Instance.new("Explosion")
   boom.parent = game.Workspace
)

???
Reply
#6
(06-18-2023, 10:58 AM)aihkw Wrote:
(06-18-2023, 10:57 AM)kilob Wrote:
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

Basically all useless garbage. Sweet.

that sounds mean but thanks

It was my intention.
Ban reason: Extreme degenerate behavior | Unwelcome here (Permanent)
Reply
#7
(06-18-2023, 10:59 AM)cyberia Wrote:
(06-18-2023, 10:58 AM)aihkw Wrote:
(06-18-2023, 10:53 AM)cyberia Wrote:
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

oh you're a roblox coder yeah? name all the metatables rn and all their functions + how to use them in a code.

say that I want to make a part that explodes when the user clicked

game
- Workspace
   - Part
      - ClickDetector
      - Script
- Camera
- ..
- ..

Inside the script;
local part = script.Parent
local cd = script.Parent.ClickDetector

cd.clicked:Connect(function()
   local boom = Instance.new("Explosion")
   boom.parent = game.Workspace
)

???

sorry I didn't answer your question

t = {}
print(getmetatable(t)) --> nil

t1 = {}
setmetatable(t, t1)
assert(getmetatable(t) == t1

Metatables allow us to change behaviour of a table. It can define how Lua computes the expression a+b, where a and b are tables. Whenever Lua tried to add two table, it checks whether of them has a metatable and whether that metatable has a __add field. If Lua finds this firl, it calls the corresponding value)
Reply
#8
(06-18-2023, 11:04 AM)aihkw Wrote:
(06-18-2023, 10:59 AM)cyberia Wrote:
(06-18-2023, 10:58 AM)aihkw Wrote:
(06-18-2023, 10:53 AM)cyberia Wrote:
(06-18-2023, 10:52 AM)aihkw Wrote: Hello world, my name is Aiko and I'm 17 years old. I like to make and design websites alot along with Discord/Telegram bots.
I'm good at Python, JavaScript, CSS, HTML, Lua (Roblox) and Arduino

oh you're a roblox coder yeah? name all the metatables rn and all their functions + how to use them in a code.

say that I want to make a part that explodes when the user clicked

game
- Workspace
   - Part
      - ClickDetector
      - Script
- Camera
- ..
- ..

Inside the script;
local part = script.Parent
local cd = script.Parent.ClickDetector

cd.clicked:Connect(function()
   local boom = Instance.new("Explosion")
   boom.parent = game.Workspace
)

???

sorry I didn't answer your question

t = {}
print(getmetatable(t)) --> nil

t1 = {}
setmetatable(t, t1)
assert(getmetatable(t) == t1

Metatables allow us to change behaviour of a table. It can define how Lua computes the expression a+b, where a and b are tables. Whenever Lua tried to add two table, it checks whether of them has a metatable and whether that metatable has a __add field. If Lua finds this firl, it calls the corresponding value)

that's a little better, i have asked for all of them tho. Including examples and names.
Reply
#9
hi bro
welcome the forums
Ban reason: Suspected Scamming | Contact us via https://raidforums.hn/contact if you feel this is incorrect. (Permanent)
Reply
#10
Hi, welcome to the breach forums, have a good time and enjoy

Hi, welcome to the breachforums, have a good time and enjoy
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  a little introduction sedikitkejahilan 14 2,321 02-06-2026, 12:35 AM
Last Post: kooght
  Introduction of myself EdgeBot91 1 74 02-05-2026, 12:45 PM
Last Post: salt
  INTRODUCTION Jduweekend jduwekeend 2 67 02-04-2026, 03:07 PM
Last Post: jduwekeend
  introduction new member beyxor beyxor 1 88 02-03-2026, 07:13 PM
Last Post: salt
  Introduction Prolinkz 0 66 02-02-2026, 04:11 AM
Last Post: Prolinkz



 Users browsing this thread: 1 Guest(s)