GunGame script – Forcefield

  • Oct 01, 2022

Report

Description

With this GunGame script we have installed for you, you can easily defeat your opponents in this game. This game we uploaded started to become popular by gathering a good player base with its similarity to MineCraft. This is a Sword Combat PvP fighting game with similar mechanics to games like BedWars, Skywars, Skyblock or Islands. Thanks to this Script we gave you, it may be possible to have fun in the game as much as you want.

Features Of GunGame script;

  • Forcefield

Developer Note: Q – for activation, T – for disable

Join Discord Server

How to use GunGame script - Forcefield?

  1. Press the "Get Script" button to Copy the "GunGame script - Forcefield" .
  2. Lua scripts require a Lua Executor, Open your executor and attach it to the game.
  3. After copying & pasting the script in your executor press the "Execute" button and "GunGame script - Forcefield" will show up in the game.
  4. If you find an old/faulty script, please let us know using the "Report" section.
  5. If you need an exploit, check out our Free Roblox Exploits Category.

GunGame script – Forcefield

game:GetService("Players").LocalPlayer.Character.Head.BillboardGui:Destroy() game:GetService("Workspace").Interactives.Water.CanCollide = true game:GetService("Workspace").Interactives.Water.TouchInterest:Destroy() -- Water Godmode game:GetService("Workspace").Interactives.Safezone.Shape = Enum.PartType.Ball game:GetService("Workspace").Interactives.Safezone.Transparency = 0.5 game:GetService("Workspace").Interactives.Safezone.Size = Vector3.new(30,30,30) game:GetService("Workspace").Interactives.Safezone.Material = Enum.Material.ForceField game:GetService("Workspace").Interactives.Safezone.Color = Color3.new(0.2, 0.8, 0.8) _G.FFB = true game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.Q then -- Forcefield on _G.FFB = true end end) game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.T then -- Forcefield off _G.FFB = false end end) game.RunService.Heartbeat:connect(function() if _G.FFB == true then game:GetService("Workspace").Interactives.Safezone.Transparency = 0 game:GetService("Workspace").Interactives.Safezone.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame --Activate end if _G.FFB == false then game:GetService("Workspace").Interactives.Safezone.Transparency = 1 game:GetService("Workspace").Interactives.Safezone.CFrame = game:GetService("Workspace").Interactives.SpawnLocation.CFrame --Deactivate end end)