Hello my name is ant,
So I have been trying to make a script so that when I say !hotel A slide show presentation will pop up all about the hotel when it was founded and all. Can someone help me out with a script for the command?
Is this slide show a UI presentation? Also, do all players see it on command?
Yes it will be a presentation. Yea, I want all the players to see it when I use the command.
I think it’d be easier to make it so it will work when someone says !hotel and it shows a slideshow for just them. Just because, I think it’d be way more difficult if you wanted to make it play for everyone.
Yea, that works too. It really doesn’t matter who sees and how but I am looking for the GUI presentation!
What admin system are you using for your hotel? Basic Admin Essentials 2.0, Minimal Admin? You’ll want to make a plugin for it.
Mhm, but I don’t think that any command like !hotel is included in that.
Most admin systems allow for plugins and additional commands.
Which admin system do you suggest? I know there are many so maybe you can send a link or specify the name!
It depends on your needs. I have made an admin system called Minimal Admin, it’s similar to Basic Admin Essentials.
Minimal Admin: Minimal Admin - Module - Roblox
Basic Admin Essentials 2.0: Basic Admin Essentials 2.0 - Roblox
Adonis: Adonis Loader [Sceleratis/Davey_Bones] - Roblox
You are going to need to learn some programming, or have somebody make this for you.
Doing it yourself, you need to compartmentalize the problem into small pieces, and tackle them one at a time. Then go about learning and completing each piece.
Your plan might look something like this:
- Make a chat command be heard by code
- Make UI that you want to be displayed
- Turn on and off the UI
- Hook up a server command to have clients turn on and off their UI
A simple solution is to use a Whitelist with a chatted event. Every player should have the slideshow UI present as well. Here’s the hierarchy of the solution.
The PlayerManager script determines if a player has said the SlideShowTriggerString word. If so, an event is fired.
local Players = game:GetService("Players");
local ReplicatedStorage = game:GetService("ReplicatedStorage");
local WhitelistedPlayers = {"ant244612", "Exeplex"}; -- Whitelisted players that can call the command
local SlideShowTriggerString = "!hotel"; -- String that will initiate the slide show
Players.PlayerAdded:Connect(function(player) -- When a player joins, call this function
for i = 1, #WhitelistedPlayers do
if (WhitelistedPlayers[i] == player.Name) then -- If the joined player matches any of the names in the WhitelistedPlayers array.
player.Chatted:Connect(function(msg) -- Hook the player chatted function to the white listed player.
if (msg == SlideShowTriggerString) then
ReplicatedStorage.Events.StartSlideShowEvent:FireAllClients(); -- Fire the slideshow event for all clients to begin the show.
end
end)
break; -- Hook the function and break, no need to go through all names.
end
end
end)
The SlideShowManager waits for the StartSlideShowEvent to be triggered. When triggered, the UI is activated (Your code goes on from there)
local ReplicatedStorage = game:GetService("ReplicatedStorage");
local Events = ReplicatedStorage:WaitForChild("Events");
local StartSlideShowEvent = Events:WaitForChild("StartSlideShowEvent");
local SlideShowUI = script.Parent:WaitForChild("SlideShowUI");
StartSlideShowEvent.OnClientEvent:Connect(function() -- Event listener. When fire, execute this function.
SlideShowUI.Frame.Visible = true;
end)
Personally, I’d think it’s best to just integrate the command with whatever admin system the hotel is using. Since most hotels use an admin system, this shouldn’t be too much of a problem.
So all the script would go inside also tysm. You have helped tons