#acid rain and humanoid

23 messages · Page 1 of 1 (latest)

cunning walrus
wraith comet
#

ignore the 15 on the y axis i was testin smth

real stirrup
#

the event TouchEnded triggers everytime it stops touching something

#

so it can hit the players head, then their arm, then their torso, their their leg, then their feet

#

you should delete the rain when it hurts the player

#

also use

#
task.wait(0)
#

its wait but better

#

its more accurate

real stirrup
# wraith comet

you shouldnt use the second argument of instance.new() roblox themself say not to use it

#

you should just do

#
local part = instance.new("part)
part.parent = workspace
#

its much more optimzed

#

and a better pratitce is that when your done setting all the properties for rain

#

parent it after

#

as everytime you change a property you make the server send a signal to replicate the changes to the client

#

but if you do all the properties

#

then parent it to workspace

#

the server will just have to send one packet of data instead of multiple

wraith comet
real stirrup
# wraith comet i thought that was the same thing
#

it explains alot more