Advertisement
Guest User

Wild savannah gui By xboxadictionztrolls/nova/00x190/Unawful

a guest
Aug 25th, 2019
675
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. -- Made by 00x190 | FE GUI for Wild Savannah.
  2.  
  3. repeat wait() until game.Players.LocalPlayer.Character
  4.  
  5. --
  6.  
  7. local Player = game:GetService("Players").LocalPlayer
  8. local Mouse = Player:GetMouse()
  9.  
  10. local KillEvent = workspace.RemoteServer.Death
  11.  
  12. local CKToggle = false
  13. local KVToggle = false
  14. local KAToggle = false
  15.  
  16. --
  17.  
  18. local function CreateInstance(Object,Properties)
  19. local NewInstance = Instance.new(Object)
  20. for i,v in pairs(Properties) do
  21. NewInstance[i] = v
  22. end
  23. return NewInstance
  24. end
  25.  
  26. --
  27.  
  28. local MainGui = CreateInstance("ScreenGui", {Name = "MainGui", ResetOnSpawn = true, Enabled = true, Parent = game:GetService("Players").LocalPlayer.PlayerGui})
  29. local MainFrame = CreateInstance("Frame", {Name = "MainFrame", Size = UDim2.new(0, 250, 0, 250), Position = UDim2.new(0.5, -125, 0.5, -125), BackgroundColor3 = Color3.fromRGB(50, 52, 49), BackgroundTransparency = 0, BorderSizePixel = 0, Parent = MainGui, Active = true, Draggable = true})
  30. local Notice = CreateInstance("TextLabel", {Name = "Notice", Text = "Made by Nova#9162 | CrypticLuaX", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 1, Parent = MainFrame, TextSize = 18, Size = UDim2.new(1, 0, 0, 15), Position = UDim2.new(0, 0, 0, 0), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
  31. local ClickKill = CreateInstance("TextButton", {Name = "ClickKill", Text = "Smite-a-Cunt", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(1, 0, 0, 15), Position = UDim2.new(0, 0, 0, 50), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
  32. local Victim = CreateInstance("TextBox", {Name = "VictimName", Text = "Victim's Name Here", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(0, 180, 0, 15), Position = UDim2.new(0, 0, 0, 70), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
  33. local KillVictim = CreateInstance("TextButton", {Name = "KillVictim", Text = "Kill Victim!", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(25, 25, 25), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(0, 70, 0, 15), Position = UDim2.new(0, 180, 0, 70), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
  34. local KillAll = CreateInstance("TextButton", {Name = "KillAll", Text = "Protect a Certain Someone", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(1, 0, 0, 15), Position = UDim2.new(0, 0, 0, 90), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
  35.  
  36. --
  37.  
  38. Victim.FocusLost:Connect(function()
  39. if Victim.Text == "" then
  40. Victim.Text = "Victim's Name Here"
  41. end
  42. end)
  43.  
  44. ClickKill.MouseButton1Down:Connect(function()
  45. CKToggle = not CKToggle
  46. if CKToggle == true then ClickKill.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else ClickKill.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  47. Mouse.Button1Down:connect(function()
  48. if CKToggle == true then
  49. Mouse.TargetFilter = workspace.Water
  50. print(Mouse.Target)
  51. KillEvent:FireServer(game.Players[Mouse.Target.Parent.Name].Character)
  52. else
  53. print(nil)
  54. end
  55. end)
  56. end)
  57.  
  58. KillVictim.MouseButton1Down:Connect(function()
  59. KVToggle = not KVToggle
  60. if KVToggle == true then KillVictim.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillVictim.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  61. while wait() do
  62. if KVToggle == true then
  63. local Char = game.Players[Victim.Text].Character
  64. KillEvent:FireServer(Char)
  65. else
  66. print(nil)
  67. end
  68. end
  69. end)
  70.  
  71. KillAll.MouseButton1Click:Connect(function()
  72. KAToggle = not KAToggle
  73. if KAToggle == true then KillAll.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillAll.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  74. while wait() do
  75. if KAToggle == true then
  76. for i,v in pairs(game.Players:GetChildren()) do
  77. if v.Name ~= Player.Name and not v:IsFriendsWith(Player.UserId) then
  78. KillEvent:FireServer(v.Character)
  79. print("Ded: "..v.Name)
  80. else
  81. print(nil)
  82. end
  83. end
  84. end
  85. end
  86. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement