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
(Jun 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
(Jun 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.

This forum account is currently banned. Ban Length: Permanent (N/A Remaining)
Ban Reason: Extreme degenerate behavior | Unwelcome here
Reply
#4
(Jun 18, 2023, 10:53 AM)cyberia Wrote:
(Jun 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
)

(Jun 18, 2023, 10:57 AM)kilob Wrote:
(Jun 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
(Jun 18, 2023, 10:58 AM)aihkw Wrote:
(Jun 18, 2023, 10:53 AM)cyberia Wrote:
(Jun 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
(Jun 18, 2023, 10:58 AM)aihkw Wrote:
(Jun 18, 2023, 10:57 AM)kilob Wrote:
(Jun 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.

This forum account is currently banned. Ban Length: Permanent (N/A Remaining)
Ban Reason: Extreme degenerate behavior | Unwelcome here
Reply
#7
(Jun 18, 2023, 10:59 AM)cyberia Wrote:
(Jun 18, 2023, 10:58 AM)aihkw Wrote:
(Jun 18, 2023, 10:53 AM)cyberia Wrote:
(Jun 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
(Jun 18, 2023, 11:04 AM)aihkw Wrote:
(Jun 18, 2023, 10:59 AM)cyberia Wrote:
(Jun 18, 2023, 10:58 AM)aihkw Wrote:
(Jun 18, 2023, 10:53 AM)cyberia Wrote:
(Jun 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

This forum account is currently banned. Ban Length: Permanent (N/A Remaining)
Ban Reason: Suspected Scamming | Contact us via https://breachforums.ai/contact if you feel this is incorrect.
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
  Elsa Is FBI - Im FBI Elsa 0 8 6 minutes ago
Last Post: Elsa
  yooo, portugal here kuzabrutu 0 12 35 minutes ago
Last Post: kuzabrutu
  helo Spedza 0 145 Yesterday, 04:52 PM
Last Post: Spedza
  Presentation camillo 0 145 Yesterday, 01:57 PM
Last Post: camillo
  hi all jbtjbt 1 158 Yesterday, 02:52 AM
Last Post: felowfren

Forum Jump:


 Users browsing this forum: 1 Guest(s)