Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
ROBLOX Ui Play Button
script.Parent.MouseButton1Click:Connect(function() --- This is saying when you press your mouse button then it will function script.Parent.Parent.TextButton.Visible = false --- So when you click your mouse the local script is saying to make the text button invisible. script.Parent.MouseEnter:Connect(function() --- So this is saying when you hover your mouse over this textbutton it will function script.Parent.Parent.TextButton.BackgroundColor3 = Color3.new(1, 1, 1) --- This is saying to change colors when mouse hovers script.Parent.MouseLeave:Connect(function() script.Parent.Parent.TextButton.BackgroundColor3 = Color3.new(0, 0, 0) --- Saying to change to original color end --- This may not be entirely correct in roblox where the "end" are because I'm used to ROBLOX automatically putting ends and stuff. --- Works for ROBLOX only since they have different stuff.
run
|
edit
|
history
|
help
0
test
Uppercase
Random number generation with ranges (Lua)
CC: LDInterface
Lua properties
Random Item Generator (1 year)
BasicTablePrinterV2
Creating habits. Lua
The Pyramid in the two-dimensional array made of random stones - Lua
Reverse strings function - Lua