How to Make a Scroll-Focus (Easy Access) Scrolling Frame in Roblox Studio | Roblox Studio Scripting

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 พ.ย. 2024

ความคิดเห็น • 9

  • @TQNY
    @TQNY 3 หลายเดือนก่อน

    Been waiting for more lessons like these - Thanks !!

  • @CencuOG
    @CencuOG 3 หลายเดือนก่อน

    crazyyy good tutorial bro🥇

  • @zahraworks315
    @zahraworks315 3 หลายเดือนก่อน

    Ur good I thinked about it when I didn't see the vid

  • @_The_Scouser
    @_The_Scouser 2 หลายเดือนก่อน +1

    Can you make a pick a side like game.

  • @Omachcoco.F1
    @Omachcoco.F1 หลายเดือนก่อน

    Hi i love your content but can you make a video about, if the player buys a VIP gamepass he has a "VIP" chat tag and an Owner Chat tag with it please ?

  • @V8-Production
    @V8-Production 3 หลายเดือนก่อน

    brother i ask you to make tutorials for fps game such as how to add hitmarker, kill affects, teams and etc please brother

  • @WeirdTrollFaceMemeThing
    @WeirdTrollFaceMemeThing 3 หลายเดือนก่อน

    Can you please make a round system with a random npc spawn just like the horror mansion

  • @beastlegend593
    @beastlegend593 3 หลายเดือนก่อน +1

    Can you help me make a Roblox game

  • @RuanFelipe-zx4hz
    @RuanFelipe-zx4hz หลายเดือนก่อน

    local main = script.Parent
    local scrollingframe = main.Parent.Scroll
    local ts = game:GetService("TweenService")
    local ti = TweenInfo.new(0.1, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
    for i, button in pairs(main.Holder:GetService()) do

    if not button:IsA("TextButton") then
    continue
    end

    button.MouseButton1Click:Connect(function()

    local targetFrame = scrollingframe:FindFirstChild(button.Name)

    if not targetFrame then
    return
    end

    local targetPos = Vector2.new(0,
    scrollingframe.AbsoluteCanvasSize.Y * targetFrame.Position.Y.Scale - (targetFrame.AbsoluteSize.Y/7))

    ts:Create(scrollingframe, ti, {CanvasPosition = targetPos}):Play()
    --scrollingframe.CanvasPosition = targetPos
    end)
    end