Stuck On RoStrap RippleButton

So, I’m trying to create a RippleButton but I cannot seem to get it to work. Any help?

Script:

local ReplicatedStorage = game:GetService("ReplicatedStorage")

local Resources = require(ReplicatedStorage:WaitForChild("Resources"))

local Color = Resources:LoadLibrary("Color")

local PseudoInstance = Resources:LoadLibrary("PseudoInstance")

--------------------------------------------------------------------------

local Button = PseudoInstance.new("RippleButton")
Button.Parent = script.Parent
Button.Text = "Submit"
Button.Style = "Contained"
Button.PrimaryColor3 = Color3.fromRGB(255, 0, 0)
1 Like

Solved

I forgot to add the size of the container :smiley:

1 Like