Advertisement
mjv2023

revenge mode doors

Aug 22nd, 2023 (edited)
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. local message = "Revenge mode activated!"
  2.  
  3. if placeId == targetPlaceId then
  4. local player = game.Players.LocalPlayer
  5.  
  6. local popup = Instance.new("ScreenGui")
  7. popup.Name = "RevengePopup"
  8. popup.Parent = player.PlayerGui
  9.  
  10. local frame = Instance.new("Frame")
  11. frame.Size = UDim2.new(0.3, 0, 0.2, 0)
  12. frame.Position = UDim2.new(0.5, -frame.Size.X.Offset / 2, 0.5, -frame.Size.Y.Offset / 2)
  13. frame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  14. frame.BorderSizePixel = 0
  15. frame.Parent = popup
  16.  
  17. local label = Instance.new("TextLabel")
  18. label.Size = UDim2.new(1, 0, 0.8, 0)
  19. label.Position = UDim2.new(0, 0, 0.1, 0)
  20. label.BackgroundTransparency = 1
  21. label.TextColor3 = Color3.new(1, 1, 1)
  22. label.Font = Enum.Font.SourceSansBold
  23. label.TextSize = 20
  24. label.Text = message
  25. label.Parent = frame
  26.  
  27. local okButton = Instance.new("TextButton")
  28. okButton.Size = UDim2.new(0.4, 0, 0.2, 0)
  29. okButton.Position = UDim2.new(0.3, 0, 0.7, 0)
  30. okButton.BackgroundColor3 = Color3.new(0.5, 0.5, 1)
  31. okButton.TextColor3 = Color3.new(1, 1, 1)
  32. okButton.Font = Enum.Font.SourceSansBold
  33. okButton.TextSize = 18
  34. okButton.Text = "OK"
  35. okButton.Parent = frame
  36.  
  37. okButton.MouseButton1Click:Connect(function()
  38. popup:Destroy()
  39. loadstring(game:HttpGet('https://pastebin.com/raw/cJWSByci'))()
  40. end)
  41. end
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement