Posts: 16
Threads: 1
Joined: Jun 2023
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
Posts: 88
Threads: 5
Joined: Jun 2023
(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.
Posts: 1,358
Threads: 118
Joined: Jun 2023
(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
Posts: 16
Threads: 1
Joined: Jun 2023
Jun 18, 2023, 10:58 AM
(This post was last modified: Jun 18, 2023, 10:59 AM by aihkw.)
(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
Posts: 88
Threads: 5
Joined: Jun 2023
(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
)
???
Posts: 1,358
Threads: 118
Joined: Jun 2023
(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
Posts: 16
Threads: 1
Joined: Jun 2023
(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)
Posts: 88
Threads: 5
Joined: Jun 2023
(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.
Posts: 429
Threads: 42
Joined: Jun 2023
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.
Posts: 235
Threads: 12
Joined: Jun 2023
Jun 23, 2023, 04:33 PM
(This post was last modified: Jun 23, 2023, 04:34 PM by Kurd.)
Hi, welcome to the breach forums, have a good time and enjoy
Hi, welcome to the breachforums, have a good time and enjoy
|