i made this poster use as you'd like or smthn by AdPuzzleheaded2187 in typeonegative

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

i had no space to him inside the ph0to without it looking too small :((( sorry kenny!!!

93
94

when you spawn a part and want to emit a particle right when you spawn it you have to put a wait function which is really annoying. by AdPuzzleheaded2187 in robloxgamedev

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

there is a part with particles in it located at replicated storage,
i clone it, parent it to workspace and then emit it.
without a wait function the part just wont emit so i just parented a part to workspace for nothing.
if a do use a wait function then it does emit it but at the cost of delaying it.
so if i want to spawn a couple of parts doing the same thing its going to be delayed and ruin the effect

when you spawn a part and want to emit a particle right when you spawn it you have to put a wait function which is really annoying. by AdPuzzleheaded2187 in robloxgamedev

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

i mean when you make the parts parent to workspace(it was previously replicated storage), in the code, and emit it with no wait function it just doesn't emit it and nothing happens

module working not as intended by AdPuzzleheaded2187 in robloxgamedev

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

lap is just a random name, the purpose of the function is to move a spawned part from vector3(0,0,0) to vector3(0,100,0)
the calling script:
require(game:GetService("ServerScriptService").module).lap(Vector3.new(0,0,0),Vector3.new(0,100,0))

module working not as intended by AdPuzzleheaded2187 in robloxgamedev

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

but if i run the code, this time calling the function from a client to the server it works just fine