Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local SolarisLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Hambourga/I-forgor-/main/scripts"))()
- local win = SolarisLib:New({
- Name = "Untitled Sans Battle",
- FolderToSave = ""
- })
- local tab = win:Tab("Main")
- local sec = tab:Section("Main")
- local autofarm = sec:Toggle("AutoFarm", false,"Autofarm", function(t)
- getgenv().Toggle = t
- while getgenv().Toggle do wait()
- pcall(function()
- for i,v in ipairs(game.Workspace.SoulsStorage:GetDescendants()) do
- if v.Name == "Soul" and v.Parent:IsA("Model") then
- firetouchinterest(v,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
- firetouchinterest(v,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
- end
- end
- end)
- end
- end)
- local Godmode = sec:Toggle("Godmode", false, "Godmode", function(t)
- getgenv().Toggle = t
- while getgenv().Toggle do task.wait()
- for i, creator in ipairs(game.Workspace:GetDescendants()) do
- if creator:IsA("Model") and creator:FindFirstChild("Creator") and creator:FindFirstChild("Creator").Value ~= game.Players.LocalPlayer.Name then
- for i, v in ipairs(creator:GetDescendants()) do
- if v:IsA("TouchTransmitter") then
- v.Parent.CanTouch = false
- end
- end
- end
- end
- end
- end)
- local BadgeLol = {
- "Hamburger Sans",
- "Gaster",
- "Super Sans",
- "Dust Dust"
- }
- getgenv().BadgeGiver = nil
- local BadgeGiver = sec:Dropdown("Badge",BadgeLol,"None","Badge", function(t)
- getgenv().BadgeGiver = t
- end)
- sec:Button("Get Badge", function()
- if getgenv().BadgeGiver == "Hamburger Sans" then
- firetouchinterest(game.Workspace.Locations.Snowdin["Grillby's"].Model.SnowBurg.Burger,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
- firetouchinterest(game.Workspace.Locations.Snowdin["Grillby's"].Model.SnowBurg.Burger,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
- elseif getgenv().BadgeGiver == "Gaster" then
- firetouchinterest(game.Workspace:FindFirstChild("Secrets/Badges").Gaster_Badge.Model.GasterChest,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
- firetouchinterest(game.Workspace:FindFirstChild("Secrets/Badges").Gaster_Badge.Model.GasterChest,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
- game.Players.LocalPlayer.Character.Humanoid.Health = 0
- game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 0
- elseif getgenv().BadgeGiver == "Super Sans" then
- firetouchinterest(game.Workspace.Locations.Snowdin.SuperSansBadge,game.Players.LocalPlayer.Character.HumanoidRootPart,0)
- firetouchinterest(game.Workspace.Locations.Snowdin.SuperSansBadge,game.Players.LocalPlayer.Character.HumanoidRootPart,1)
- elseif getgenv().BadgeGiver == "Dust Dust" then
- game("ReplicatedStorage").ShopPurchases.DustDustBought:FireServer()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement