Advertisement
TheMoonGoddess

[Roblox: Wild Savanna] - Smite script (Working as of February 6, 2020) - (Exploiting script!)

Oct 1st, 2021
1,111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.19 KB | None | 0 0
  1. repeat wait() until game.Players.LocalPlayer.Character
  2.  
  3. --
  4.  
  5. local Player = game:GetService("Players").LocalPlayer
  6. local Mouse = Player:GetMouse()
  7.  
  8. local KillEvent = workspace.RemoteServer.Death
  9.  
  10. local CKToggle = false
  11. local KVToggle = false
  12. local KAToggle = false
  13.  
  14. --
  15.  
  16. local function CreateInstance(Object,Properties)
  17. local NewInstance = Instance.new(Object)
  18. for i,v in pairs(Properties) do
  19. NewInstance[i] = v
  20. end
  21. return NewInstance
  22. end
  23.  
  24. --
  25.  
  26. local MainGui = CreateInstance("ScreenGui", {Name = "MainGui", ResetOnSpawn = true, Enabled = true, Parent = game:GetService("Players").LocalPlayer.PlayerGui})
  27. 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})
  28. local Notice = CreateInstance("TextLabel", {Name = "Notice", Text = "Thank you for using my FE GUI!", 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)})
  29. 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)})
  30. 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)})
  31. 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)})
  32. 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)})
  33.  
  34. --
  35.  
  36. Victim.FocusLost:Connect(function()
  37. if Victim.Text == "" then
  38. Victim.Text = "Victim's Name Here"
  39. end
  40. end)
  41.  
  42. ClickKill.MouseButton1Down:Connect(function()
  43. CKToggle = not CKToggle
  44. if CKToggle == true then ClickKill.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else ClickKill.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  45. Mouse.Button1Down:connect(function()
  46. if CKToggle == true then
  47. Mouse.TargetFilter = workspace.Water
  48. print(Mouse.Target)
  49. KillEvent:FireServer(game.Players[Mouse.Target.Parent.Name].Character)
  50. else
  51. print(nil)
  52. end
  53. end)
  54. end)
  55.  
  56. KillVictim.MouseButton1Down:Connect(function()
  57. KVToggle = not KVToggle
  58. if KVToggle == true then KillVictim.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillVictim.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  59. while wait() do
  60. if KVToggle == true then
  61. local Char = game.Players[Victim.Text].Character
  62. KillEvent:FireServer(Char)
  63. else
  64. print(nil)
  65. end
  66. end
  67. end)
  68.  
  69. KillAll.MouseButton1Click:Connect(function()
  70. KAToggle = not KAToggle
  71. if KAToggle == true then KillAll.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillAll.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
  72. while wait() do
  73. if KAToggle == true then
  74. for i,v in pairs(game.Players:GetChildren()) do
  75. if v.Name ~= Player.Name and not v:IsFriendsWith(Player.UserId) then
  76. KillEvent:FireServer(v.Character)
  77. print("Ded: "..v.Name)
  78. else
  79. print(nil)
  80. end
  81. end
  82. end
  83. end
  84. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement