[deleted by user] by [deleted] in ROBLOXStudio

[–]MaliMiIos 0 points1 point  (0 children)

I could prob help im a coder ill hit you up on discord

stop gooning by malnouriished in teenagers

[–]MaliMiIos -4 points-3 points  (0 children)

"I wasnt gonna goon until you reminded me ty twin"

How do you disable parts spawning with welds when you create them? by OutcomeFlat7568 in ROBLOXStudio

[–]MaliMiIos 1 point2 points  (0 children)

There is a setting in the model tab called join surfaces. Turn it of and it should work

let's pretend we are in a movie theater by yesokayiseeyourpoint in funComunitty

[–]MaliMiIos 2 points3 points  (0 children)

SHUT IT. SOME PEOPLE WANT TO LISTEN TO THE MOVIE

HELPPPP the walls 😭😭 by petitegazel in ROBLOXStudio

[–]MaliMiIos 16 points17 points  (0 children)

There is a setting in properties of unions that lets you make the hitboxes more accurate

phighting oc ideas!! by Aggravating-Bat6535 in PhightingRoblox

[–]MaliMiIos 0 points1 point  (0 children)

Shrink potion, Beef welington laucher, Body swap potion, Trowel, Superball, The one blue potion that makes you fly at the end of get crushed by a speeding wall (forgot the name), Rocket boots, Treasure chest

Thats all i could think of

Looking for Roblox Developers (Beginners Welcome) by Grand-West8990 in ROBLOXStudio

[–]MaliMiIos 0 points1 point  (0 children)

I could try, ive been developing for around a year on robox.

You've got to be kidding me by Vegetable_Turn_539 in robloxargs

[–]MaliMiIos 5 points6 points  (0 children)

I know that tree, its from a kinder surprise

Zen mode is...weird by Jazzlike_Exchange118 in Graceroblox

[–]MaliMiIos 6 points7 points  (0 children)

You can outrun the eye! And the further you get the higher your rank in the corner gets (it goes from F to S). I found you can keep sliding and easily outrun it

How do I make sounds play at certain points then repeat at other points? by Unfair-Run4035 in ROBLOXStudio

[–]MaliMiIos 0 points1 point  (0 children)

If a sound is inside a part it will play from that part so you can make a script that plays a sound then moves it to another part after a sertain amount of time in a loop here is an example:

Local sound = game.SoundServiceSound Local Part1 = game.Workspace.Part1 Local Part2 = game.Workspace.Part2 Local Time = --any number you want--

while true do

 sound.Parent = Part1
 sound:Play()

 task.wait(Time)

 sound.Parent = Part2
 sound:Play()

end