Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- script.Parent = workspace script.Name = "LordSpringyScript"
- local c = LoadLibrary("RbxUtility").Create
- c'RemoteEvent'{Parent = script, Name = "PS"}
- c'RemoteEvent'{Parent = script, Name = "Msg"}
- script.Changed:connect(function()
- script:FindFirstChild("PS").OnServerEvent:connect(function(plr)
- game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
- Text = "|Private Server| - Enabled"; --This is a required field, it will allow you to set the message to any string you want.
- Color = Color3.new(0,1,0); --This is optional, it will allow you to add a custom color to the chat, however will default to Color3.new(255/255, 255/255, 243/255) if not set.
- Font = Enum.Font.SourceSans; -- Optional, defaults to Enum.Font.SourceSansBold --This is optional, this field will allow you to change the font of the text to any of the current 7 fonts you want.
- FontSize = Enum.FontSize.Size24; -- Optional, defaults to Enum.FontSize.Size18 --This is once again optional, and you can change it to any of the existing sizes.
- })
- end)
- script:FindFirstChild("Msg").OnServerEvent:connect(function(plr)
- game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
- Text = "|Arcane E.Y.E Online|"; --This is a required field, it will allow you to set the message to any string you want.
- Font = Enum.Font.SourceSans; -- Optional, defaults to Enum.Font.SourceSansBold --This is optional, this field will allow you to change the font of the text to any of the current 7 fonts you want.
- FontSize = Enum.FontSize.Size24;
- Color = Color3.new(0,1,1);
- })
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment