Working:
Current Version: v1.1
Functions
Show Functions
- Express Notification
- Dialog Frame
- Titles
Updates
- Nothing here -crickets sound-
Don’t worry, no more boring things, here’s the code
Raw Handler
-- This module needs to be called from client and the ScreenGui who contains the controller should be inside StarterGui
local player = game.Players.LocalPlayer
local module = require(player.PlayerGui:WaitForChild("UI-Dev").Controller)
-- Making a dialog frame //
module:dialog({
title = "Welcome!",
message = "Welcome to the game, "..game.Players.LocalPlayer.Name.." we hope you like the game, and thanks for playing! :D",
callback = nil -- This will be fired when the player press "close" button.
})
-- Making a title frame
local module = require(module path here)
module:title({
titleText = "Mission complete",
subtitleText = "You completed the mission!",
fireworks = false, -- Fireworks in the GUI
callback = nil -- This will be fired when the title hides
})
-- Making an express notification
local module = require(module path here)
module:express({
lifetime = 3,
text = "HELLO!!!",
presetLocation = UDim2.new(0,0,0,0),
randomLocation = false,
backgroundvisible = true,
backgroundcolor = Color3.new(1,1,1),
textcolor = Color3.new(0,0,0),
fireworks = true, -- Show fireworks
callback = nil -- This will be fired when the notification disappears
})
So, where’s the download?
Versions available to download
- EzInterface.rbxm (19,1 KB)
Hey River, I wanna a Roblox model
If you want a preview, don’t worry, here’s the showcase
I hope you enjoy the module