Functions – Roblox Scripting Tutorial

This tutorial will teach you how to use functions in Roblox Studio scripting, including parameters and arguments. This topic is crucial to understand Events which are coming next!

Join membership for EXCLUSIVE perks:
https://www.youtube.com/channel/UCp1R0TBvgM7gj0rwTYULmSA/join

SUBSCRIBE to learn how to master Roblox scripting:
https://www.youtube.com/alvinblox?sub_confirmation=1 />
Watch my full beginner scripting series:
https://goo.gl/k3erz2

Roblox username: Alvin_Blox

Alex
Alex

Hi, I'm Alex! I've been obsessed with Roblox ever since I first started playing at the age of 15. Now at 25, Roblox is still my number one hobby and passion.

When I'm not working my day job, you can find me gaming for hours on end, playing and creating all kinds of imaginative worlds. I love participating in building challenges and mini-games with friends. My favorite thing is designing intricate obstacle courses and racing tracks.

I run a Roblox gaming website where I post articles, guides, and tips about my gameplay and creations. I provide tricks and advice for fellow adult gamers and try to keep things entertaining with my fun writing style.

Articles: 2951

6 Comments

  1. function changeTransparency(part,newTransparency)

    part.Transparency = newTransparency

    end

    changeTransparency(game.Workspace.Part,0)

    wait(5)

    changeTransparency(game.Workspace.Part,1)

    wait(5)

    changeTransparency(game.Workspace.Part,0) what that does is makes the "part" disappear and appear after 5 seconds

  2. i just realized you can run multiple functions in one functions
    for example:
    function Test()
    print("Hello world!")
    end

    function Test2()

    print("Hello Universe!")

    end

    function runmultiplefunctions()

    Test()
    Test2()

    end
    runmultiplefunctions()

Leave a Reply

Your email address will not be published. Required fields are marked *