Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Eliseyfoxy's Gui", "DarkTheme")
- local Tab = Window:NewTab("LocalCharacter")
- local Section = Tab:NewSection("LocalCharacter")
- Section:NewButton("hit a target(need a stick+restart the script)", "ButtonInfo", function()
- print("Clicked")
- local args = {
- [1] = game:GetService("Players").VictimsMainName.Character.Head,
- [2] = 1
- }
- game:GetService("ReplicatedStorage").Remotes.DriftWoodHit:FireServer(unpack(args))
- end)
- Section:NewButton("swim", "ButtonInfo", function()
- print("Clicked")
- local args = {
- [1] = true
- }
- game:GetService("ReplicatedStorage").Remotes.Swim:FireServer(unpack(args))
- end)
- Section:NewButton("unswim", "ButtonInfo", function()
- print("Clicked")
- local args = {
- [1] = false
- }
- game:GetService("ReplicatedStorage").Remotes.Swim:FireServer(unpack(args))
- end)
- local Tab = Window:NewTab("Items")
- local Section = Tab:NewSection("ItemsMenu")
- Section:NewButton("get a shell", "ButtonInfo", function()
- print("Clicked")
- workspace.Washed.Shell.ObjectRemote:FireServer()
- end)
- Section:NewButton("get a rock", "ButtonInfo", function()
- print("Clicked")
- workspace.Washed.SkippingRock.ObjectRemote:FireServer()
- end)
- Section:NewButton("get a stick", "ButtonInfo", function()
- print("Clicked")
- workspace.Washed.Driftwood.ObjectRemote:FireServer()
- end)
- local Tab = Window:NewTab("TeleportMenu")
- local Section = Tab:NewSection("Teleports")
- Section:NewButton("tp to snail", "ButtonInfo", function()
- print("Clicked")
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-43572.7656, 120.848373, 23.5581074, -0.993592203, -0.00493376143, 0.112918273, -4.65661287e-10, 0.999046803, 0.0436515585, -0.113026008, 0.0433718413, -0.992645085)
- local args = {
- [1] = false
- }
- game:GetService("ReplicatedStorage").Remotes.Swim:FireServer(unpack(args))
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement