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 ?
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
Been waiting for more lessons like these - Thanks !!
crazyyy good tutorial bro🥇
Ur good I thinked about it when I didn't see the vid
Can you make a pick a side like game.
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 ?
brother i ask you to make tutorials for fps game such as how to add hitmarker, kill affects, teams and etc please brother
Can you please make a round system with a random npc spawn just like the horror mansion
Can you help me make a Roblox game
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