Advertisement
LatviaCPI

Untitled

May 20th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.94 KB | None | 0 0
  1. -- Made by LuaCritic | 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. local SToggle = false
  16.  
  17. --
  18.  
  19. local function CreateInstance(Object,Properties)
  20. local NewInstance = Instance.new(Object)
  21. for i,v in pairs(Properties) do
  22.     NewInstance[i] = v
  23. end
  24.     return NewInstance
  25. end
  26.  
  27. --
  28.  
  29. local MainGui = CreateInstance("ScreenGui", {Name = "MainGui", ResetOnSpawn = true, Enabled = true, Parent = game:GetService("Players").LocalPlayer.PlayerGui})
  30. local MainFrame = CreateInstance("Frame", {Name = "MainFrame", Size = UDim2.new(0, 220, 0, 160), Position = UDim2.new(0.5, -125, 0.5, -125), BackgroundColor3 = Color3.fromRGB(50, 18, 46), BackgroundTransparency = 0, BorderSizePixel = 0, Parent = MainGui, Active = true, Draggable = true})
  31. local Notice = CreateInstance("TextLabel", {Name = "Notice", Text = "Fuck yeah", 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, 20), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
  32. local ClickKill = CreateInstance("TextButton", {Name = "ClickKill", Text = "Click Kill", 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)})
  33. 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)})
  34. 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)})
  35. local KillAll = CreateInstance("TextButton", {Name = "KillAll", Text = "Kill All Players!", 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)})
  36. local Speed = CreateInstance("TextButton", {Name = "Speed", Text = "Speed!", 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, 110), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
  37.  
  38.  
  39. --
  40.  
  41. Victim.FocusLost:Connect(function()
  42.     if Victim.Text == "" then
  43.         Victim.Text = "Victim's Name Here"
  44.     end
  45. end)
  46.  
  47. ClickKill.MouseButton1Down:Connect(function()
  48.     CKToggle = not CKToggle
  49.     if CKToggle == true then ClickKill.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else ClickKill.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  50.     Mouse.Button1Down:connect(function()
  51.         if CKToggle == true then
  52.             Mouse.TargetFilter = workspace.Water
  53.             print(Mouse.Target)
  54.             KillEvent:FireServer(game.Players[Mouse.Target.Parent.Name].Character)
  55.         else
  56.             print(nil)
  57.         end
  58.     end)
  59. end)
  60.  
  61. KillVictim.MouseButton1Down:Connect(function()
  62.     KVToggle = not KVToggle
  63.     if KVToggle == true then KillVictim.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillVictim.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  64.     while wait() do
  65.         if KVToggle == true then
  66.             local Char = game.Players[Victim.Text].Character
  67.             KillEvent:FireServer(Char)
  68.         else
  69.             print(nil)
  70.         end
  71.     end
  72. end)
  73.  
  74. KillAll.MouseButton1Click:Connect(function()
  75.     KAToggle = not KAToggle
  76.     if KAToggle == true then KillAll.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillAll.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  77.     while wait() do
  78.     if KAToggle == true then
  79.     for i,v in pairs(game.Players:GetChildren()) do
  80.         if v.Name ~= Player.Name and not v:IsFriendsWith(Player.UserId) then
  81.                 KillEvent:FireServer(v.Character)
  82.                     print("Ded: "..v.Name)
  83.         else
  84.             print(nil)
  85.                 end
  86.             end
  87.         end
  88.     end
  89. end)
  90.  
  91. Speed.MouseButton1Click:Connect(function()
  92.     SToggle = not SToggle
  93.     if SToggle == true then Speed.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else Speed.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  94.     while wait() do
  95.     game.Players.LocalPlayer.Character.Humanoid2.WalkSpeed = 200
  96.         else
  97.             print(nil)
  98.                 end
  99.             end
  100.         end
  101.     end
  102. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement