kingkoolie

Untitled

Aug 28th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. script.Name = "PSEnabled"
  2. local stopped = Instance.new("BoolValue",script)
  3. stopped.Name = "ok"
  4. script.Parent = game.Players.LocalPlayer.PlayerGui
  5. print(stopped.Value)
  6. if stopped.Value == false then
  7. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  8. Text = "Private Server - Enabled";
  9. Color = Color3.new(0,1,0);
  10. Font = Enum.Font.SourceSans;
  11. FontSize = Enum.FontSize.Size18;
  12. })
  13. else
  14. script.Disabled = true
  15. end
Advertisement
Add Comment
Please, Sign In to add comment