VibeNMatrix

Roblox Grace

Dec 10th, 2024
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. workspace.DescendantAdded:Connect(function(descendant)
  2. if descendant:IsA("ParticleEmitter") then
  3. descendant.Rate = descendant.Rate * 10 -- line of code i added for low-graphics players to see the red(blood) rain
  4. end
  5. end)
  6. workspace.DescendantAdded:Connect(function(descendant)
  7. if descendant.Name == "base" and descendant:IsA("BasePart") then
  8. local player = game.Players.LocalPlayer
  9. if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  10. descendant.Position = player.Character.HumanoidRootPart.Position
  11. game.StarterGui:SetCore("SendNotification", { -- cosmetic
  12. Title = "levers moved",
  13. Text = "door has been opened",
  14. Duration = 3
  15. })
  16. end
  17. end
  18. end)
  19. workspace.DescendantAdded:Connect(function(descendant)
  20. if descendant.Name == "eye" or descendant.Name == "elkman" or descendant.Name == "Rush" or descendant.Name == "Worm" or descendant.Name == "eyePrime" then
  21. descendant:Destroy() -- makes u invincible to these entities since they're all clientsided
  22. end
  23. end)
  24. local players = game:GetService("Players")
  25. local localPlayer = players.LocalPlayer
  26. while true do
  27. local eyeGui = localPlayer:FindFirstChild("PlayerGui"):FindFirstChild("eyegui")
  28. if eyeGui then
  29. eyeGui:Destroy() -- deletes the eyeparasites (literally makes you invincible even if u get hit + removes distractions)
  30. end
  31. task.wait(0.1)
  32. end
  33. while true do
  34. local smileGui = localPlayer:FindFirstChild("PlayerGui"):FindFirstChild("smilegui")
  35. if smileGui then
  36. smileGui:Destroy() --if it wasnt for the fact that carnation gets deleted this would give you a big boost because it still slows him down
  37. end
  38. task.wait(0.1)
  39. end
  40. while true do
  41. local FUNNYGOATMAN = localPlayer:FindFirstChild("PlayerGui"):FindFirstChild("GOATPORT")
  42. if FUNNYGOATMAN then
  43. FUNNYGOATMAN:Destroy() --doesnt work yet
  44. end
  45. task.wait(0.1)
  46. end
Add Comment
Please, Sign In to add comment