Advertisement
Memeitsreal

Untitled Sans Battle Script

Jul 4th, 2023 (edited)
1,411
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.03 KB | None | 0 1
  1. local SolarisLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Hambourga/I-forgor-/main/scripts"))()
  2. local win = SolarisLib:New({
  3.    Name = "Untitled Sans Battle",
  4.    FolderToSave = ""
  5. })
  6. local tab = win:Tab("Main")
  7. local sec = tab:Section("Main")
  8.  
  9. local autofarm = sec:Toggle("AutoFarm", false,"Autofarm", function(t)
  10.   getgenv().Toggle = t
  11.   while getgenv().Toggle do wait()
  12.     pcall(function()
  13.    for i,v in ipairs(game.Workspace.SoulsStorage:GetDescendants()) do
  14. if v.Name == "Soul" and v.Parent:IsA("Model") then
  15.  firetouchinterest(v,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
  16. firetouchinterest(v,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
  17. end
  18. end
  19. end)
  20. end
  21. end)
  22.  
  23.  
  24. local Godmode = sec:Toggle("Godmode", false, "Godmode", function(t)
  25.     getgenv().Toggle = t
  26.     while getgenv().Toggle do task.wait()
  27.             for i, creator in ipairs(game.Workspace:GetDescendants()) do
  28.                             if creator:IsA("Model") and creator:FindFirstChild("Creator") and creator:FindFirstChild("Creator").Value ~= game.Players.LocalPlayer.Name then
  29.                                 for i, v in ipairs(creator:GetDescendants()) do
  30.                                     if v:IsA("TouchTransmitter") then
  31.                                         v.Parent.CanTouch = false
  32.                                        
  33.                                     end
  34.                                 end
  35.                             end
  36.                        
  37.         end
  38.     end
  39. end)
  40.  
  41.  
  42.  
  43. local BadgeLol = {
  44.   "Hamburger Sans",
  45.   "Gaster",
  46.   "Super Sans",
  47.   "Dust Dust"
  48. }
  49. getgenv().BadgeGiver = nil
  50. local BadgeGiver = sec:Dropdown("Badge",BadgeLol,"None","Badge", function(t)
  51.    getgenv().BadgeGiver = t
  52. end)
  53. sec:Button("Get Badge", function()
  54.    
  55.      
  56.    if getgenv().BadgeGiver == "Hamburger Sans" then
  57.      firetouchinterest(game.Workspace.Locations.Snowdin["Grillby's"].Model.SnowBurg.Burger,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
  58.  
  59. firetouchinterest(game.Workspace.Locations.Snowdin["Grillby's"].Model.SnowBurg.Burger,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
  60.    elseif getgenv().BadgeGiver == "Gaster" then
  61.      firetouchinterest(game.Workspace:FindFirstChild("Secrets/Badges").Gaster_Badge.Model.GasterChest,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
  62. firetouchinterest(game.Workspace:FindFirstChild("Secrets/Badges").Gaster_Badge.Model.GasterChest,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
  63. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  64. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 0
  65.  
  66.    elseif getgenv().BadgeGiver == "Super Sans" then
  67.    firetouchinterest(game.Workspace.Locations.Snowdin.SuperSansBadge,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
  68.  
  69. firetouchinterest(game.Workspace.Locations.Snowdin.SuperSansBadge,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
  70.    elseif getgenv().BadgeGiver == "Dust Dust" then
  71.      game("ReplicatedStorage").ShopPurchases.DustDustBought:FireServer()
  72. end
  73. end)
  74.  
  75.  
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement