Skip to content
View bubu07codes's full-sized avatar
:bowtie:
I may be slow to respond.
:bowtie:
I may be slow to respond.

Block or report bubu07codes

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. bcode bcode Public

  2. TextOnPart.luau TextOnPart.luau
    1
    -- Put this in a Part (:
    2
    
                  
    3
    local gui = Instance.new("SurfaceGui") -- Creates a SurfaceGui
    4
    gui.Parent = script.Parent -- Don’t forget to set the parent!
    5
    gui.SizingMode = "PixelsPerStud" -- Same as Enum.SurfaceGuiSizingMode.PixelsPerStud
  3. Understand the use of touched event ... Understand the use of touched event in Roblox
    1
    local part = script.Parent -- The Part
    2
    
                  
    3
    part.Touched:Connect(function(hit) -- Every time something touches the part
    4
    	print(hit) -- This is the Instance what touched the part
    5
    	
  4. Simple leaderstats template by BubuT... Simple leaderstats template by BubuTheDev
    1
    -- Simple leaderstats template by BubuTheDev
    2
    
                  
    3
    -- Creates a folder called "leaderstats" (needs to be exact, dont change!)
    4
    -- Creates a value called Points with a starting value of 0
    5
    -- Every second Points will get increased by 1
  5. BubuTheDev’s Simple DataStore BubuTheDev’s Simple DataStore
    1
    --BubuTheDev’s Simple DataStore
    2
    
                  
    3
    --Saves player’s leaderstats when leaves or disconnected
    4
    --Loads and sets the leaderstats when joining the game.
    5