RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create me a script that shows a button and when pressed remove the spam restriction for roblox"
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local SpamRestriction = ReplicatedStorage.SpamRestriction local function onButtonClicked() SpamRestriction.Value = false end local button = Instance.new("TextButton") button.Name = "RemoveSpamRestrictionButton" button.Text = "Remove Spam Restriction" button.Parent = Players.LocalPlayer.PlayerGui button.Position = UDim2.new(0.5, 0, 0.5, 0) button.Size = UDim2.new(0, 200, 0, 50) button.MouseButton1Click:Connect(onButtonClicked)