Advertisement
Burkino

Untitled

Apr 7th, 2020
2,813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. --Made by Hacking101--
  2. local remote = require(game.Players.LocalPlayer.PlayerScripts['TTA-Client'].CoreModule)
  3. local Dialogue = game.Players.LocalPlayer.PlayerGui:GetDescendants()
  4. local Interact = game.Workspace.Interaction
  5. for i,v in pairs(Dialogue) do
  6. if v.Name == "DialogueText" then
  7. Dialogue = v
  8. break
  9. end
  10. end
  11. local Event = {}
  12. local function ScanText(text)
  13. if string.sub(Dialogue.Text,0,#text) == text and Event[text] ~= true then
  14. Event[text] = true
  15. return true
  16. end
  17. return false
  18. end
  19. local Eggs = game.Workspace.FindableEggs
  20. for i,v in pairs(Eggs:GetChildren()) do
  21. v.Transparency = 1
  22. v.CanCollide = false
  23. spawn(function()
  24. while wait() do
  25. v.CFrame = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Part").CFrame * CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))
  26. end
  27. end)
  28. end
  29. game:GetService("RunService").RenderStepped:Connect(function()
  30. if ScanText("So you are back") then
  31. remote:FireServer("DamageHumanoid",workspace.SpookyBunny.Humanoid,workspace.SpookyBunny.Humanoid.Health)
  32. elseif ScanText("Now hop") then
  33. game.Players.LocalPlayer.Character:MoveTo(Interact.GurtParkour.Position)
  34. elseif ScanText("Do the") then
  35. game.Players.LocalPlayer.Character:MoveTo(Interact.Parkour.Position)
  36. elseif ScanText("Welcome to the") then
  37. game.Players.LocalPlayer.Character:MoveTo(game.Players.LocalPlayer.Character.Head.Position + Vector3.new(0,100,0))
  38. elseif ScanText("Defend your") then
  39. remote:FireServer("DamageHumanoid",workspace.SpookyBunny.Humanoid,100)
  40. end
  41. end)
  42. local mt = getrawmetatable(game)
  43. setreadonly(mt,false)
  44. local nc = mt.__namecall
  45. mt.__namecall = function(self,...)
  46. local args = {...}
  47. if self.ClassName == "Humanoid" then
  48. if type(args[1]) == "number" then
  49. args[1] = 0
  50. end
  51. end
  52. return nc(self,unpack(args))
  53. end
  54. setreadonly(mt,true)
  55. print("Running Script")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement