Advertisement
Eliseyfoxy

Roblox nowhere script

Aug 10th, 2022 (edited)
861
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Eliseyfoxy's Gui", "DarkTheme")
  3. local Tab = Window:NewTab("LocalCharacter")
  4. local Section = Tab:NewSection("LocalCharacter")
  5. Section:NewButton("hit a target(need a stick+restart the script)", "ButtonInfo", function()
  6. print("Clicked")
  7. local args = {
  8. [1] = game:GetService("Players").VictimsMainName.Character.Head,
  9. [2] = 1
  10. }
  11. game:GetService("ReplicatedStorage").Remotes.DriftWoodHit:FireServer(unpack(args))
  12. end)
  13. Section:NewButton("swim", "ButtonInfo", function()
  14. print("Clicked")
  15. local args = {
  16. [1] = true
  17. }
  18. game:GetService("ReplicatedStorage").Remotes.Swim:FireServer(unpack(args))
  19. end)
  20. Section:NewButton("unswim", "ButtonInfo", function()
  21. print("Clicked")
  22. local args = {
  23. [1] = false
  24. }
  25. game:GetService("ReplicatedStorage").Remotes.Swim:FireServer(unpack(args))
  26. end)
  27. local Tab = Window:NewTab("Items")
  28. local Section = Tab:NewSection("ItemsMenu")
  29. Section:NewButton("get a shell", "ButtonInfo", function()
  30. print("Clicked")
  31. workspace.Washed.Shell.ObjectRemote:FireServer()
  32. end)
  33. Section:NewButton("get a rock", "ButtonInfo", function()
  34. print("Clicked")
  35. workspace.Washed.SkippingRock.ObjectRemote:FireServer()
  36. end)
  37. Section:NewButton("get a stick", "ButtonInfo", function()
  38. print("Clicked")
  39. workspace.Washed.Driftwood.ObjectRemote:FireServer()
  40. end)
  41. local Tab = Window:NewTab("TeleportMenu")
  42. local Section = Tab:NewSection("Teleports")
  43. Section:NewButton("tp to snail", "ButtonInfo", function()
  44. print("Clicked")
  45. 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)
  46. local args = {
  47. [1] = false
  48. }
  49. game:GetService("ReplicatedStorage").Remotes.Swim:FireServer(unpack(args))
  50. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement